-
Notifications
You must be signed in to change notification settings - Fork 202
/
package.json
115 lines (115 loc) · 3.23 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@angular-redux/store",
"version": "9.0.0",
"description": "Angular bindings for Redux",
"main": "./lib/src/index.js",
"scripts": {
"precommit": "lint-staged",
"prebuild": "rimraf ./lib",
"build": "npm run build:src && npm run build:testing",
"build:src": "ngc -p tsconfig.build.json",
"build:testing": "ngc -p tsconfig.testing.json",
"lint": "tslint 'src/**/*.ts'",
"prettier": "prettier --parser typescript --single-quote --trailing-comma es5 --write \"**/*.ts\"",
"prepublish": "npm run lint && npm run build && npm test",
"test": "nyc node tests.js",
"test:watch": "nodemon tests.js -w src -w testing -e ts",
"ci": "npm run lint && npm run build && npm test",
"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"
},
"typings": "./lib/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/angular-redux/store.git"
},
"keywords": [
"redux",
"ng2",
"angular2",
"angular"
],
"author": "William Buchwalter <[email protected]> (http://github.com/wbuchwalter)",
"contributors": [
{
"name": "Evan Schultz",
"email": "[email protected]",
"url": "https://github.com/e-schultz"
},
{
"name": "Michael Bennett",
"url": "https://github.com/bennett000"
},
{
"name": "Seth Davenport",
"url": "https://github.com/SethDavenport"
},
{
"name": "Cosmin Ronnin",
"url": "https://github.com/kosz"
},
{
"name": "Gabriel Schuster",
"url": "https://github.com/actra-development-oss"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular-redux/store/issues"
},
"homepage": "https://github.com/angular-redux/store#readme",
"devDependencies": {
"@angular/animations": "^6.0.1",
"@angular/common": "^6.0.1",
"@angular/compiler": "^6.0.1",
"@angular/compiler-cli": "^6.0.1",
"@angular/core": "^6.0.1",
"@angular/http": "^6.0.1",
"@angular/platform-browser": "^6.0.1",
"@angular/platform-browser-dynamic": "^6.0.1",
"@angular/platform-server": "^6.0.1",
"@types/jasmine": "2.5.38",
"@types/node": "^10.0.3",
"core-js": "^2.5.6",
"husky": "^0.14.3",
"jasmine": "^2.5.3",
"lint-staged": "^7.1.2",
"nodemon": "^1.10.0",
"nyc": "^10.2.0",
"prettier": "1.9.2",
"redux": "^4.0.0",
"reflect-metadata": "0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^6.1.0",
"symbol-observable": "^1.2.0",
"ts-node": "^6.0.3",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.10.0",
"typedoc": "^0.11.1",
"typedoc-plugin-sourcefile-url": "^1.0.3",
"typescript": "2.7.2",
"zone.js": "^0.8.26"
},
"peerDependencies": {
"@angular/core": "^6.0.1",
"redux": "^4.0.0"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec.ts"
],
"include": [
"src/**/*.ts",
"testing/**/*.ts"
]
},
"lint-staged": {
"*.ts": [
"yarn prettier",
"git add"
]
}
}