-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1015 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
43
44
45
{
"name": "@ibezkrovnyi/tslint-rules",
"version": "0.0.3",
"description": "",
"main": "rules/index.js",
"scripts": {
"test": "tslint --test tests/rules/*/*",
"precompile": "rimraf '{src,rules}/*.js'",
"compile": "tsc -p .",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"test2": "tslint --config tslint.json --project ./tests/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibezkrovnyi/tslint-rules.git"
},
"keywords": [
"eslint",
"tslint",
"custom-rules",
"rules",
"stylish",
"lint",
"linting",
"linter",
"tslint-plugin"
],
"author": "",
"dependencies": {
},
"devDependencies": {
"rimraf": "2.6.2",
"tslint": "5.8.0",
"typescript": "2.7.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ibezkrovnyi/tslint-rules/issues"
},
"homepage": "https://github.com/ibezkrovnyi/tslint-rules#readme",
"publishConfig": {
"access": "public"
}
}