-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "@angular-redux/router",
"version": "9.0.0",
"description": "Keep your Angular 2+ router state in Redux.",
"author": "Dag Stuan",
"license": "MIT",
"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"
},
"publishConfig": {
"access": "public"
},
"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.0",
"@angular/router": "^6.0.0",
"@angular-redux/store": "^9.0.0"
},
"devDependencies": {
"@angular-redux/store": "9.0.0",
"@angular/common": "6.0.7",
"@angular/compiler": "6.0.7",
"@angular/compiler-cli": "6.0.7",
"@angular/core": "6.0.7",
"@angular/platform-browser": "6.0.7",
"@angular/platform-browser-dynamic": "6.0.7",
"@angular/router": "6.0.7",
"@types/core-js": "0.9.46",
"@types/jasmine": "2.8.8",
"redux": "4.0.0",
"rimraf": "2.6.2",
"rxjs": "6.2.1",
"typescript": "2.7.2",
"zone.js": "0.8.26"
}
}