This repository has been archived by the owner on Jan 10, 2019. It is now read-only.
forked from evanrs/redux-namespace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "redux-namespace",
"version": "0.10.3",
"description": "Namespace your component state in your Redux store",
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && 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": "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": "ISC",
"bugs": {
"url": "https://github.com/evanrs/redux-namespace/issues"
},
"homepage": "https://github.com/evanrs/redux-namespace#readme",
"peerDependencies": {
"react": "^15.1.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1"
},
"dependencies": {
"hoist-non-react-statics": "^1.0.5",
"invariant": "^2.2.0",
"lodash": "^4.6.0",
"preact-shallow-compare": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-plugin-lodash": "^2.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.6.3",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"expect": "^1.16.0",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}