-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.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": "@angular-redux/router",
"version": "9.0.0",
"description": "Keep your Angular 2+ router state in Redux.",
"main": "./lib/es5/src/index.js",
"module": "./lib/esm/src/index.js",
"typings": "./lib/es5/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-redux/router.git"
},
"scripts": {
"prepublish": "npm run build",
"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": "^6.0.3",
"@angular/router": "^6.0.3"
},
"devDependencies": {
"@angular-redux/store": "^9.0.0",
"@angular/common": "^6.0.3",
"@angular/compiler": "^6.0.3",
"@angular/compiler-cli": "^6.0.3",
"@angular/core": "^6.0.3",
"@angular/platform-browser": "^6.0.3",
"@angular/platform-browser-dynamic": "^6.0.3",
"@angular/router": "^6.0.3",
"@types/core-js": "^0.9.39",
"@types/jasmine": "^2.5.37",
"redux": "^4.0.0",
"rimraf": "^2.5.4",
"rxjs": "^6.1.0",
"typescript": "2.7.2",
"zone.js": "^0.8.26"
},
"author": "Dag Stuan",
"license": "MIT"
}