forked from angular-redux/ng-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "ng-redux",
"version": "3.4.0-beta.1",
"description": "Redux bindings for Angular.js",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:min && npm run build:max",
"build:lib": "rm -rf lib && `npm bin`/babel src --out-dir lib",
"build:min": "./node_modules/.bin/webpack --optimize-minimize lib/index.js dist/ng-redux.min.js",
"build:max": "./node_modules/.bin/webpack lib/index.js dist/ng-redux.js",
"test": "mocha --compilers js:babel-register --recursive"
},
"repository": {
"type": "git",
"url": "https://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-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-register": "^6.3.13",
"expect": "^1.8.0",
"mocha": "^2.2.5",
"sinon": "^1.16.1",
"webpack": "^1.12.11",
"semantic-release": "^4.3.5"
},
"peerDependencies": {
"redux": "^3.0.0"
},
"dependencies": {
"invariant": "^2.1.0",
"lodash.assign": "^3.2.0",
"lodash.curry": "^4.0.1",
"lodash.isarray": "^3.0.4",
"lodash.isfunction": "^3.0.6",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^3.2.0",
"lodash.map": "^4.4.0",
"redux": "^3.0.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}