This repository has been archived by the owner on Feb 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "tslint-plugin-ikatyang",
"version": "1.1.1",
"description": "tslint rules for ikatyang",
"keywords": [
"tslint",
"tslint-plugin",
"tslint-rules"
],
"main": "rules/index.js",
"types": "rules/index.d.ts",
"repository": "https://github.com/ikatyang/tslint-plugin-ikatyang",
"homepage": "https://github.com/ikatyang/tslint-plugin-ikatyang#readme",
"author": {
"name": "Ika",
"email": "ikatyang@gmail.com",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn run build -- --inlineSourceMap false",
"lint": "tslint -p ./tsconfig.json --type-check",
"test": "tslint --test ./tests/*/*",
"test-coverage": "nyc yarn run test",
"build": "rm -rf ./rules && tsc -p tsconfig.build.json",
"release": "standard-version"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1",
"lodash.upperfirst": "^4.3.1",
"tslib": "^1.7.1",
"tsutils": "^2.8.0"
},
"devDependencies": {
"@types/lodash.camelcase": "4.3.4",
"@types/lodash.kebabcase": "4.1.4",
"@types/lodash.snakecase": "4.1.4",
"@types/lodash.upperfirst": "4.3.4",
"@types/node": "8.10.36",
"nyc": "11.9.0",
"prettier": "1.12.1",
"prettier-config-ikatyang": "1.1.1",
"standard-version": "4.4.0",
"tslint": "5.11.0",
"tslint-config-ikatyang": "2.5.1",
"tslint-config-prettier": "1.15.0",
"tslint-plugin-prettier": "2.0.0",
"typescript": "2.9.2"
},
"peerDependencies": {
"tslint": "^5.0.0"
},
"engines": {
"node": ">= 4"
},
"files": [
"/rules/**/*"
]
}