forked from amcdnl/ngrx-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.8 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
{
"name": "ngrx-form",
"version": "2.0.0",
"description": "Form bindings 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-form.git"
},
"keywords": [
"ngrx",
"redux",
"state",
"store",
"state-mangement",
"reactive-forms",
"angular"
],
"author": "Austin McDaniel",
"license": "MIT",
"bugs": {
"url": "https://github.com/amcdnl/ngrx-form/issues"
},
"homepage": "https://github.com/amcdnl/ngrx-form#readme",
"peerDependencies": {
"@angular/core": "^6.0.0",
"@angular/forms": "^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",
"@angular/forms": "^6.0.0",
"@ngrx/effects": "^6.0.0",
"@ngrx/store": "^6.0.0",
"@types/jasmine": "^2.8.0",
"husky": "^0.14.3",
"jasmine": "^2.8.0",
"lint-staged": "^7.1.2",
"ng-packagr": "2.4.5",
"prettier": "^1.12.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.0.0",
"tsickle": "^0.27.2",
"tslint": "^5.8.0",
"typescript": "2.7.x",
"zone.js": "^0.8.26"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"lint-staged": {
"*.ts": [
"npm run prettier",
"git add"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
}
}