-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 1.06 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
{
"name": "tslint-lines-between-class-members",
"version": "1.3.6",
"description": "Custom rule for TSLint to enforce blank lines between class methods - achieves a similar thing to lines-between-class-members in ESLint",
"scripts": {
"lint": "tslint --config tslint.json --exclude node_modules **/*.ts",
"test": "ava-ts src/**/test/**/*.spec.ts --verbose",
"test:watch": "concurrently \"yarn test --watch\" \"yarn compile:watch\" -n \"ava,tsc\" -p -c \"magenta,blue\"",
"compile": "tsc",
"compile:watch": "tsc --watch",
"prepublish": "yarn compile"
},
"keywords": [
"tslint",
"custom-tslint-rule"
],
"author": "Heather Roberts",
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chinchiheather/tslint-lines-between-class-members.git"
},
"devDependencies": {
"@types/node": "8.0.53",
"ava": "^0.25.0",
"ava-ts": "^0.24.3",
"concurrently": "^4.1.0",
"temp-dir": "^1.0.0",
"ts-node": "^6.0.0",
"tslint": "5.15.0",
"typescript": "3.4.5"
}
}