-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.14 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
71
{
"name": "redux-state",
"version": "1.1.0",
"description": "A high order component using react-redux style to keep component state in redux store",
"files": [
"dist",
"lib",
"src"
],
"main": "./lib/index.js",
"scripts": {
"build:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/redux-state.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/redux-state.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && node ./prepublish",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"prepublish": "npm run clean && npm run build",
"test": "mocha --compilers js:babel-register --recursive --require ./test/setup.js",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/babotech/redux-state.git"
},
"keywords": [
"redux",
"react",
"state",
"reactjs",
"react-redux",
"decorator"
],
"author": "Galkin Rostislav <[email protected]> (https://github.com/galkinrost)",
"license": "MIT",
"bugs": {
"url": "https://github.com/babotech/redux-state/issues"
},
"homepage": "https://github.com/babotech/redux-state#readme",
"devDependencies": {
"babel-core": "6.21.0",
"babel-cli": "^6.6.5",
"babel-loader": "6.2.10",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.20.2",
"babel-plugin-transform-react-jsx": "6.8.0",
"babel-preset-es2015": "6.18.0",
"cross-env": "3.1.3",
"es3ify": "0.2.2",
"eslint": "3.12.2",
"eslint-config-babo": "0.1.3",
"expect": "1.20.2",
"glob": "7.1.1",
"jsdom": "9.9.1",
"mocha": "3.2.0",
"react": "15.4.1",
"react-addons-test-utils": "15.4.1",
"react-dom": "15.4.1",
"react-redux": "5.0.1",
"redux": "3.6.0",
"rimraf": "^2.5.2",
"sinon": "1.17.6",
"webpack": "1.14.0"
},
"dependencies": {
"hoist-non-react-statics": "1.2.0",
"invariant": "2.2.2",
"loose-envify": "1.3.0"
}
}