forked from angular-redux/ng-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "ng-redux",
"version": "3.1.1",
"description": "Redux bindings for Angular.js",
"main": "./lib/index.js",
"scripts": {
"build": "rm -rf lib && `npm bin`/babel src --out-dir lib",
"dist": "npm run build && ./node_modules/.bin/webpack --optimize-minimize lib/index.js dist/ng-redux.js",
"test": "mocha --compilers js:babel/register --recursive"
},
"repository": {
"type": "git",
"url": "http://github.com/wbuchwalter/ng-redux"
},
"author": "William Buchwalter <[email protected]> (http://github.com/wbuchwalter)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbuchwalter/ng-redux/issues"
},
"homepage": "https://github.com/wbuchwalter/ng-redux#readme",
"devDependencies": {
"babel": "^5.8.12",
"babel-core": "^5.8.14",
"babel-loader": "^5.3.2",
"expect": "^1.8.0",
"mocha": "^2.2.5",
"sinon": "^1.16.1",
"webpack": "^1.10.5"
},
"peerDependencies": {
"redux": "^3.0.0"
},
"dependencies": {
"invariant": "^2.1.0",
"lodash.assign": "^3.2.0",
"lodash.isarray": "^3.0.4",
"lodash.isfunction": "^3.0.6",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^3.2.0",
"redux": "^3.0.0"
}
}