-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
43
44
45
46
47
48
49
50
{
"name": "redux-thunk-addon",
"version": "1.0.4",
"description": "Simplify use of thunk minimizing boilerplate coding",
"author": "maxbax <[email protected]>",
"homepage": "https://github.com/maxbax/redux-thunk-addon#readme",
"bugs": {
"url": "https://github.com/maxbax/redux-thunk-addon/issues"
},
"main": "lib/index.js",
"keywords": [
"redux",
"thunk",
"boilerplate"
],
"license": "MIT",
"dependencies": {
"redux": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0"
},
"files": [
"lib/**",
"!**.test.**",
"README.md",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maxbax/redux-thunk-addon.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "babel src --out-dir lib",
"prepare": "npm run build"
}
}