forked from angular-redux/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.6 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.6 KB
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
{
"name": "@angular-redux/store",
"version": "9.0.0",
"description": "Angular bindings for Redux",
"author": "William Buchwalter <wbuchwalter@gmail.com> (http://github.com/wbuchwalter)",
"license": "MIT",
"homepage": "https://github.com/angular-redux/platform",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-redux/platform.git"
},
"bugs": {
"url": "https://github.com/angular-redux/platform/issues"
},
"keywords": [
"angular",
"angular2",
"redux",
"store",
"state management"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"predoc": "rimraf docs",
"doc": "typedoc --out docs --excludeExternals --excludePrivate --excludeNotExported -theme minimal --sourcefile-url-prefix \"https://github.com/angular-redux/store/blob/master/src/\" --name @angular-redux/store --mode file --module commonjs --tsconfig tsconfig.docs.json src"
},
"peerDependencies": {
"@angular/core": "^6.0.0",
"redux": "^4.0.0",
"rxjs": "^6.0.0"
},
"devDependencies": {
"redux-devtools-extension": "^2.13.7",
"typedoc": "0.14.2",
"typedoc-plugin-sourcefile-url": "1.0.4"
},
"main": "dist/bundles/angular-redux-store.umd.js",
"module": "dist/fesm5/angular-redux-store.js",
"es2015": "dist/fesm2015/angular-redux-store.js",
"esm5": "dist/esm5/angular-redux-store.js",
"esm2015": "dist/esm2015/angular-redux-store.js",
"fesm5": "dist/fesm5/angular-redux-store.js",
"fesm2015": "dist/fesm2015/angular-redux-store.js",
"typings": "dist/angular-redux-store.d.ts",
"metadata": "dist/angular-redux-store.metadata.json"
}