-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "redux-state-loader",
"version": "0.1.6",
"description": "A redux middleware to handle loading states triggered through start, success and failure actions.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src/",
"clean": "del lib",
"prebuild": "npm run clean",
"build": "babel src -d lib",
"lint:fix": "eslint --fix src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nishanbajracharya/redux-loader.git"
},
"keywords": [
"redux",
"middleware"
],
"author": "Nishan Bajracharya <nisbaj11@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nishanbajracharya/redux-loader/issues"
},
"homepage": "https://github.com/nishanbajracharya/redux-loader#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"del-cli": "^1.1.0",
"eslint": "^4.19.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2"
},
"peerDependencies": {
"redux": "^3.7.2"
},
"dependencies": {}
}