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 7
/
Copy pathpackage.json
76 lines (76 loc) · 1.83 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": "1.2.1",
"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://[email protected]/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": "^5.0.0",
"@angular/forms": "^5.0.0",
"@ngrx/effects": ">=4.1.1 || >5.0.0",
"@ngrx/store": ">=4.1.1 || >5.0.0",
"rxjs": "^5.5.6"
},
"devDependencies": {
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@ngrx/effects": "^5.0.0",
"@ngrx/store": "^5.0.0",
"@types/jasmine": "^2.8.0",
"husky": "^0.14.3",
"jasmine": "^2.8.0",
"lint-staged": "^6.0.0",
"ng-packagr": "2.0.0-rc.9",
"prettier": "^1.9.2",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.6",
"tsickle": "^0.26.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"zone.js": "^0.8.4"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"lint-staged": {
"*.ts": [
"npm run prettier",
"git add"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
}
}