-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.94 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
70
{
"name": "redux-namespace",
"version": "1.0.3",
"description": "Namespace your component state in your Redux store",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"scripts": {
"build": "npm run clean && npm run build:es && npm run build:lib",
"build:es": "babel src --out-dir es",
"build:lib": "BABEL_MODULES=true babel src --out-dir lib",
"clean": "rimraf dist && rimraf lib",
"prepublish": "npm test && npm run build",
"postversion": "npm test && git push && git push --tags",
"test": "BABEL_MODULES=true mocha --compilers js:babel-register --recursive --require ./test/setup.js",
"test:watch": "npm test -- --watch"
},
"files": [
"dist",
"lib",
"src",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/evanrs/redux-namespace.git"
},
"keywords": [
"redux",
"data",
"binding",
"namespace",
"forms"
],
"author": "Evan Schneider",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanrs/redux-namespace/issues"
},
"homepage": "https://github.com/evanrs/redux-namespace#readme",
"peerDependencies": {
"lodash": "^4.6.0",
"react": "^15.1.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1"
},
"dependencies": {
"hoist-non-react-statics": "^2.2.2",
"invariant": "^2.2.0",
"preact-shallow-compare": "^1.0.1",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.7.2",
"expect": "^1.16.0",
"jsdom": "^11.1.0",
"lodash": "^4.6.0",
"mocha": "^3.5.0",
"react": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.3.1",
"rimraf": "^2.5.2"
}
}