-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
82 lines (82 loc) · 2.69 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
{
"name": "@ngrx/router",
"version": "1.0.0-beta.2",
"description": "A reactive router for Angular 2",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ngrx/router.git"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:lib": "tslint lib/**.ts",
"lint:spec": "tslint spec/**.ts",
"typings": "typings install",
"clean": "npm-run-all clean:*",
"clean:release": "rm -rf ./release",
"clean:typings": "rm -rf ./typings",
"prebuild": "npm-run-all clean typings karma",
"build": "npm-run-all build:cjs build:es6 build:docs",
"build:cjs": "tsc --p tsconfig.es5.json --diagnostics --pretty",
"build:es6": "tsc -m es2015 --sourceRoot ./ --outDir ./release/es6 --target ES6 -d --diagnostics --pretty",
"build:docs": "esdoc -c esdoc.json",
"prepare": "npm-run-all prepare:*",
"prepare:es6": "cp -R ./release/es6 ./release/npm",
"prepare:package": "cp ./{package.json,README.md,LICENSE} ./release/npm",
"test": "npm-run-all clean typings karma",
"karma": "karma start --single-run",
"karma:watch": "karma start",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postbuild": "npm run prepare",
"preversion": "npm run test",
"version": "npm run changelog && git add CHANGELOG.md"
},
"authors": [
"Mike Ryan",
"Brandon Roberts"
],
"license": "MIT",
"peerDependencies": {
"@ngrx/core": "^1.0.0",
"rxjs": "^5.0.0-beta.6",
"@angular/common": "^2.0.0-rc.3",
"@angular/core": "^2.0.0-rc.3",
"@angular/compiler": "^2.0.0-rc.3",
"@angular/platform-browser": "^2.0.0-rc.3"
},
"devDependencies": {
"@angular/common": "^2.0.0-rc.3",
"@angular/compiler": "^2.0.0-rc.3",
"@angular/core": "^2.0.0-rc.3",
"@angular/platform-browser": "^2.0.0-rc.3",
"@angular/platform-browser-dynamic": "^2.0.0-rc.3",
"@ngrx/core": "^1.0.0",
"conventional-changelog-cli": "^1.1.1",
"core-js": "^2.2.2",
"esdoc": "^0.4.6",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor": "0.0.21",
"karma-webpack": "^1.7.0",
"npm-run-all": "^1.7.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"source-map-loader": "^0.1.5",
"ts-loader": "^0.8.1",
"tslint": "^3.6.0",
"typescript": "^1.8.9",
"typings": "^0.7.12",
"webpack": "^1.12.14",
"zone.js": "^0.6.8"
},
"dependencies": {
"path-to-regexp": "^1.2.1",
"query-string": "^4.1.0"
}
}