This repository has been archived by the owner on Jul 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
73 lines (73 loc) · 1.78 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
{
"name": "ngrx-actions",
"version": "4.0.1",
"description": "Actions and Reducer Utility Library for NGRX",
"main": "dist/index.js",
"scripts": {
"build": "ng-packagr -p package.json",
"test": "ngc -p tsconfig.spec.json && jasmine dist/spec/*.spec.js",
"publish": "npm publish dist",
"precommit": "lint-staged",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prettier": "prettier --parser typescript --single-quote es5 --write \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://amcdnl@github.com/amcdnl/ngrx-actions.git"
},
"keywords": [
"ngrx",
"redux",
"state",
"store",
"state-mangement"
],
"author": "Austin McDaniel",
"license": "MIT",
"bugs": {
"url": "https://github.com/amcdnl/ngrx-actions/issues"
},
"homepage": "https://github.com/amcdnl/ngrx-actions#readme",
"peerDependencies": {
"@angular/core": "^6.0.0",
"@ngrx/effects": "^6.0.0",
"@ngrx/store": "^6.0.0",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@ngrx/effects": "6.0.0-beta.3",
"@ngrx/store": "6.0.0-beta.3",
"@types/jasmine": "^2.8.0",
"husky": "^0.14.3",
"jasmine": "^2.8.0",
"lint-staged": "^6.0.0",
"ng-packagr": "^3.0.3",
"prettier": "^1.9.2",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.0.0",
"tsickle": "^0.26.0",
"tslint": "^5.8.0",
"typescript": "~2.7.0",
"zone.js": "^0.8.4",
"rxjs-compat": "^6.1.0"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"lint-staged": {
"*.ts": [
"npm run prettier",
"git add"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
}
}