-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "tslint-ngrx",
"version": "1.1.0",
"description": "A repository for opinionated ngrx rules.",
"directories": {
"test": "test"
},
"homepage": "https://github.com/Inlustra/tslint-ngrx",
"keywords": [
"typescript",
"ngrx",
"tslint",
"ngrx-effects",
"ngrx-store"
],
"bugs": {
"url": "https://github.com/Inlustra/tslint-ngrx/issues",
"email": "[email protected]"
},
"scripts": {
"preversion": "run-s build test-rules",
"build": "run-s clean compile copy",
"clean": "rm -rf ./build/*",
"lint": "tslint 'src/**/*.ts'",
"compile": "tsc -p ./",
"copy": "cp -f package.json README.md tslint-ngrx.json build/",
"test": "npm-run-all build test-rules",
"test-rules": "scripts/verify.sh"
},
"author": "Thomas Joseph Nairn ([email protected])",
"license": "MIT",
"devDependencies": {
"@types/node": "^7.0.13",
"npm-run-all": "^4.0.2",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
},
"dependencies": {
"case": "^1.5.2"
}
}