-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "redux-state-action",
"version": "1.0.9",
"description": "Make your life easier",
"main": "lib/index.js",
"author": "Khoa Thai",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tvkhoa/redux-state-action.git"
},
"bugs": {
"url": "https://github.com/tvkhoa/redux-state-action/issues"
},
"homepage": "https://github.com/tvkhoa/redux-state-action",
"scripts": {
"build": "webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.42.0",
"lodash-webpack-plugin": "^0.11.2",
"mocha": "^3.2.0",
"webpack": "^2.3.0",
"yargs": "^7.0.2"
},
"keywords": [
"webpack",
"es6",
"redux",
"action",
"selector",
"state",
"commonjs"
],
"dependencies": {
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"reselect": "^3.0.1"
}
}