-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 944 Bytes
/
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
{
"name": "redux-background",
"version": "0.9.2",
"description": "Execute background tasks with redux",
"author": "Jose R Villalon Soler",
"main": "build/index.js",
"repository": {
"url": "[email protected]:monvillalon/redux-background.git",
"type": "git"
},
"scripts": {
"clean": "rm -rf build && mkdir build",
"build": "npm run clean; NODE_ENV=production babel -d ./build ./src -s"
},
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"redux": "*"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0"
}
}