-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1009 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": "tslint-config-gluons",
"version": "2.2.0",
"description": "Gluons' personal TSLint shareable config.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"tslint.json"
],
"scripts": {
"prebuild": "rimraf dist/*",
"build": "tsc",
"lint": "tslint -p .",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/tslint-config-gluons.git"
},
"keywords": [
"tslint",
"tslintconfig",
"gluons"
],
"author": "Saran Tanpituckpong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluons/tslint-config-gluons/issues"
},
"homepage": "https://github.com/gluons/tslint-config-gluons",
"devDependencies": {
"@types/node": "10",
"rimraf": "^3.0.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"tslint": "5 - 6"
}
}