-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.85 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
{
"name": "@ngrx/store",
"version": "2.1.2",
"description": "RxJS powered Redux for Angular2 apps",
"main": "./index.js",
"scripts": {
"clean": "rimraf node_modules typings dist tmp npm-debug.log && npm cache clean",
"clean:test": "rimraf tmp",
"clean:dist": "rimraf dist",
"build:dist": "npm run clean:dist && ngc && cp package.json dist/package.json",
"lint": "tslint src/**.ts",
"test": "tsc -p spec && jasmine && npm run clean:test",
"test:ngc": "ngc -p spec/tsconfig.ngc.json",
"typings": "typings install",
"prebuild:dist": "npm run typings",
"prepublish:dist": "npm run build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qdouble/ngrx-store.git"
},
"keywords": [
"RxJS",
"Angular2",
"Redux"
],
"author": "Rob Wormald <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngrx/store/issues"
},
"homepage": "https://github.com/ngrx/store#readme",
"devDependencies": {
"@angular/common": "^2.0.0-rc.5",
"@angular/compiler": "^2.0.0-rc.5",
"@angular/compiler-cli": "^0.5.0",
"@angular/core": "^2.0.0-rc.5",
"@angular/platform-browser": "^2.0.0-rc.5",
"@angular/platform-server": "^2.0.0-rc.5",
"@angular/tsc-wrapped": "^0.2.2",
"@ngrx/core": "^1.0.0",
"@types/jasmine": "^2.2.31",
"@types/node": "^6.0.33",
"core-js": "^2.4.1",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"lodash": "^3.10.1",
"reflect-metadata": "0.1.2",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.6",
"tslint": "^3.4.0",
"typescript": "next",
"typings": "^0.8.1",
"zone.js": "^0.6.12"
},
"peerDependencies": {
"@ngrx/core": "^1.0.0",
"rxjs": "^5.0.0-beta.6",
"@angular/core": "^2.0.0-rc.5"
},
"typings": "./index.d.ts"
}