-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "silo-react",
"version": "0.4.0",
"description": "React state manager based on redux",
"main": "lib/index.js",
"scripts": {
"build": "make build",
"test": "make test",
"test:watch": "make test-watch",
"test:cover": "make test-cover",
"coveralls": "make test-cover && cat ./coverage/lcov.info | coveralls",
"prepublish": "make build",
"autod": "autod",
"lint": "make lint"
},
"repository": {
"type": "git",
"url": "https://github.com/xiamidaxia/silo-react"
},
"entry": {
"index": "./src/index.js"
},
"keywords": [],
"author": {
"name": "xiamidaxia",
"email": "xiamidaxia@icloud.com"
},
"license": "MIT",
"engines": {
"npm": ">=2.13.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"hoist-non-react-statics": "^2.3.1",
"lodash": "^4.17.4",
"redux": "^3.7.2"
},
"devDependencies": {
"autod": "^2.9.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.1",
"babel-plugin-import": "^1.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^3.x",
"eslint-plugin-import": "^2.x",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.x",
"expect": "^21.2.1",
"jest": "^20.0.4",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"jest": {
"automock": false
},
"pre-commit": [
"test",
"lint"
]
}