-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 988 Bytes
/
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
{
"name": "vrsource-tslint-rules",
"version": "6.0.0",
"description": "Extension rules for tslint",
"repository": {
"type": "git",
"url": "https://github.com/vrsource/vrsource-tslint-rules"
},
"main": "tslint.json",
"keywords": [
"eslint",
"tslint",
"custom-rules",
"rules",
"stylish",
"lint",
"linting",
"linter",
"tslint-plugin"
],
"license": "MIT",
"peerDependencies": {
"tslint": "*",
"typescript": "*"
},
"devDependencies": {
"@types/node": "^10.0.0",
"chokidar-cli": "~1.2.0",
"tslint": "~5.8.0",
"typescript": "~2.5.3"
},
"watch": {
"test": "rules/*.ts"
},
"scripts": {
"build": "tsc -p .",
"lint": "tslint rules/*.ts --project .",
"test:once": "./run_tests.sh",
"test": "npm run lint && npm run build && npm run test:once",
"watch": "chokidar 'rules/*.ts' 'test/**/*' -c 'npm run test'"
}
}