forked from ngrx/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "@ngrx/store",
"version": "2.2.3",
"description": "RxJS powered Redux for Ng-Metadata apps",
"main": "./release/bundles/store.umd.js",
"module": "./index.js",
"scripts": {
"clean:pre": "rimraf release",
"clean:post": "rimraf \"src/**/*.ngfactory.ts\"",
"copy": "node_modules/.bin/cpy LICENSE package.json README.md release",
"build:js": "node_modules/.bin/webpack --display --profile --colors --config webpack.js",
"prebuild": "npm run clean:pre",
"postbuild": "npm run clean:post && npm run copy",
"build": "npm run build:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngrx/store.git"
},
"keywords": [
"RxJS",
"Ng-Metadata",
"Redux"
],
"author": "Rob Wormald <[email protected]>",
"co-author(ng-metadata adoption)": "johnjerrico",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnjerrico/store/issues"
},
"homepage": "https://github.com/johnjerrico/store#readme",
"peerDependencies": {
"@ngrx/core": "^1.2.0"
},
"devDependencies": {
"@types/angular": "^1.6.43",
"@types/core-js": "0.9.37",
"@types/node": "^6.0.38",
"angular": "^1.6.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"copy-cli": "^1.2.1",
"core-js": "^2.4.1",
"cpy-cli": "^1.0.1",
"rimraf": "^2.6.2",
"typescript": "^2.4.2",
"ts-loader": "^4.0.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10"
},
"dependencies": {
"@ngrx/core": "^1.2.0",
"ng-metadata": "^4.0.1",
"rxjs": "^5.5.6"
}
}