forked from neilff/redux-ui-router
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "ng-redux-router",
"version": "0.1.2",
"description": "Redux middleware for use with Angular Router",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint ./src",
"clean": "rimraf lib",
"build": "npm run clean && npm run lint && babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/amitport/ng-redux-router"
},
"author": "Amit Portnoy <[email protected]> (https://github.com/amitport)",
"license": "ISC",
"dependencies": {
"babel": "5.8.21",
"redux": "3.0.0",
"redux-actions": "^0.8.0"
},
"devDependencies": {
"babel-core": "5.6.15",
"babel-eslint": "3.1.20",
"babel-loader": "5.3.1",
"chai": "3.0.0",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"mocha": "2.2.5",
"ng-redux": "3.0.0",
"node-libs-browser": "0.5.2",
"rimraf": "^2.6.1",
"sinon": "1.16.1",
"sinon-as-promised": "4.0.0"
},
"peerDependencies": {
"angular": "1.4.x",
"angular-route": "^1.4.7"
}
}