This repository has been archived by the owner on Dec 26, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
86 lines (86 loc) · 2.88 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
{
"name": "@ngrx/effects",
"version": "2.0.5",
"description": "Side effect model for @ngrx/store",
"main": "bundles/effects.umd.js",
"module": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ngrx/effects.git"
},
"scripts": {
"karma": "karma start --single-run",
"test": "nyc node tests.js",
"test:raw": "node tests.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean:pre": "rimraf release",
"clean:post": "rimraf src/**/*.ngfactory.ts && rimraf release/*.ngsummary.json release/**/*.ngsummary.json",
"copy": "cpy LICENSE package.json README.md release",
"build:js": "ngc -p tsconfig.dist.json",
"build:testing": "ngc -p tsconfig.testing.json",
"build:umd": "rollup -c rollup.config.js",
"build:umd:testing": "rollup -c rollup-testing.config.js",
"build:uglify": "uglifyjs -c --screw-ie8 --comments -o ./release/bundles/effects.min.umd.js ./release/bundles/effects.umd.js",
"build:uglify:testing": "uglifyjs -c --screw-ie8 --comments -o ./release/bundles/effects-testing.min.umd.js ./release/bundles/effects-testing.umd.js",
"bundle:main": "npm run build:js && npm run build:umd && npm run build:uglify",
"bundle:testing": "npm run build:testing && npm run build:umd:testing && npm run build:uglify:testing",
"prebuild": "npm run test && npm run clean:pre",
"postbuild": "npm run clean:post && npm run copy",
"build": "npm run bundle:main && npm run bundle:testing",
"version": "npm run changelog && git add CHANGELOG.md"
},
"authors": [
"Mike Ryan"
],
"license": "MIT",
"peerDependencies": {
"@angular/core": "^2.0.0 || ^4.0.0",
"@ngrx/store": "^1.5.0 || ^2.0.0",
"rxjs": "^5.4.0"
},
"devDependencies": {
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/compiler-cli": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"@angular/platform-browser-dynamic": "^2.0.0",
"@angular/platform-server": "^2.0.0",
"@angular/router": "^3.0.0",
"@ngrx/core": "^1.2.0",
"@ngrx/store": "^2.0.0",
"@types/jasmine": "^2.2.33",
"@types/node": "^6.0.38",
"awesome-typescript-loader": "^2.2.1",
"conventional-changelog-cli": "^1.1.1",
"core-js": "^2.2.2",
"cpy-cli": "^1.0.1",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine": "^2.5.2",
"npm-run-all": "^1.7.0",
"nyc": "^8.3.2",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.6.1",
"rollup": "^0.34.13",
"rxjs": "^5.4.0",
"source-map-loader": "^0.1.5",
"ts-loader": "^0.8.2",
"ts-node": "^3.1.0",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.4.0",
"uglifyjs": "^2.4.10",
"zone.js": "^0.7.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"spec/**/*.spec"
],
"include": [
"src/**/*.ts"
]
}
}