This repository has been archived by the owner on Jul 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
94 lines (94 loc) · 2.57 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@ngrx/store-devtools",
"version": "3.2.4",
"description": "Developer tools for @ngrx/store",
"main": "./bundles/store-devtools.umd.js",
"module": "./index.js",
"scripts": {
"karma": "karma start --single-run",
"test:raw": "node tests.js",
"test": "nyc node tests.js",
"clean:pre": "rimraf release",
"clean:post": "rimraf src/**/*.ngfactory.ts",
"copy": "cpy LICENSE package.json README.md release",
"build:js": "ngc -p tsconfig.dist.json",
"build:umd": "rollup -c rollup.config.js",
"build:uglify": "uglifyjs -c --screw-ie8 --comments -o ./release/bundles/store-devtools.min.umd.js ./release/bundles/store-devtools.umd.js",
"prebuild": "npm run test && npm run clean:pre",
"postbuild": "npm run clean:post && npm run copy",
"build": "npm run build:js && npm run build:umd && npm run build:uglify",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngrx/devtools.git"
},
"keywords": [
"RxJS",
"Angular2",
"Redux",
"Store",
"@ngrx/store"
],
"contributors": [
{
"name": "Rob Wormald",
"email": "[email protected]"
},
{
"name": "Mike Ryan",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ngrx/devtools/issues"
},
"homepage": "https://github.com/ngrx/devtools#readme",
"peerDependencies": {
"@ngrx/store": "^2.0.0",
"rxjs": "^5.0.0-beta.12"
},
"devDependencies": {
"@angular/animations": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/platform-server": "^4.0.0",
"@ngrx/core": "^1.0.0",
"@ngrx/store": "^2.1.2",
"@types/jasmine": "^2.5.46",
"@types/node": "^7.0.10",
"conventional-changelog": "^1.1.3",
"conventional-changelog-cli": "^1.3.1",
"core-js": "^2.4.1",
"cpy-cli": "^1.0.1",
"jasmine": "^2.5.3",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rxjs": "^5.2.0",
"ts-loader": "^2.0.3",
"ts-node": "^3.0.2",
"tslint": "^4.5.1",
"tslint-loader": "^3.4.3",
"typescript": "^2.2.1",
"uglifyjs": "^2.4.10",
"zone.js": "^0.8.5"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"spec/**/*.spec"
],
"include": [
"src/**/*.ts"
]
}
}