-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "tslint-whitespace-before-colon",
"version": "0.2.0",
"description": "TSLint rule for determining if a space is required or not before the colon in object literals and destructuring assignments",
"main": "index.js",
"scripts": {
"build": "tsc --project tsconfig.json --outDir .",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/xemlock/tslint-whitespace-before-colon.git"
},
"author": "xemlock <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xemlock/tslint-whitespace-before-colon/issues"
},
"homepage": "https://github.com/xemlock/tslint-whitespace-before-colon#readme",
"keywords": [
"tslint",
"tslint-plugin",
"custom-rules",
"rules",
"lint",
"linter",
"linting"
],
"devDependencies": {
"@types/node": "^8.10.40",
"tslint": "^5.12.1",
"typescript": "^2.9.2"
},
"peerDependencies": {
"tslint": "^5.0.0",
"typescript": "^2.2.0 || ^3.0.0"
}
}