-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "redux-easy-models",
"version": "0.0.4",
"description": "Easily create models using standard redux architecture.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib --ignore *.specs.js",
"test": "mocha --compilers js:babel-register test/*.js --require babel-polyfill",
"prepublish": "npm run test && npm run build"
},
"files": [
"lib",
"src"
],
"keywords": [
"flux",
"redux",
"reducers",
"actions"
],
"author": "Gustavo Machado <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.1.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.0.0",
"eslint": "^2.8.0",
"eslint-config-airbnb-base": "^1.0.3",
"eslint-plugin-import": "^1.5.0",
"eslint-watch": "^2.1.13",
"flux-standard-action": "^0.6.0",
"mocha": "^3.0.2",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.3"
},
"dependencies": {
"lodash": "^4.15.0",
"redux-actions": "^0.10.1"
}
}