-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "ng2-redux-router",
"version": "2.0.0",
"description": "Bindings from the router in Angular 2 to the redux state",
"main": "./lib/es5/index.js",
"module": "./lib/esm/index.js",
"typings": "./lib/es5/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dagstuan/ng2-redux-router.git"
},
"scripts": {
"build": "rimraf ./lib && npm run build:es5 && npm run build:esm && npm run build:es6",
"postbuild": "rimraf \"src/**/*.ngfactory.ts\"",
"build:es6": "ngc -p tsconfig.es6.json && npm run postbuild",
"build:esm": "ngc -p tsconfig.esm.json && npm run postbuild",
"build:es5": "ngc -p tsconfig.json && npm run postbuild"
},
"peerDependencies": {
"@angular/core": "^2.1.2",
"@angular/router": "^3.0.0"
},
"devDependencies": {
"@angular/common": "^2.1.2",
"@angular/compiler": "^2.1.2",
"@angular/compiler-cli": "^2.1.2",
"@angular/core": "^2.1.2",
"@angular/platform-browser": "^2.1.2",
"@angular/platform-browser-dynamic": "^2.1.2",
"@angular/platform-server": "^2.1.2",
"@angular/router": "^3.1.2",
"@types/core-js": "^0.9.34",
"@types/jasmine": "^2.5.37",
"ng2-redux": "^4.1.0",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"rxjs": "5.0.0-beta.12",
"typescript": "^2.0.8",
"zone.js": "^0.6.26"
},
"author": "Dag Stuan",
"license": "MIT"
}