-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
{
"name": "tslint-stencil",
"version": "1.0.1",
"description": "Adds stylistic rules to tslint for Stencil projects",
"keywords": [
"tslint",
"rules",
"stencil",
"stenciljs"
],
"main": "rules/index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "tsc",
"build": "rm -rf rules && npm run compile && npm run docs",
"test": "tslint --test test/rules/**/*",
"verify": "npm run build && npm run test",
"commit": "node scripts/commit",
"predocs": "rm -rf docs",
"docs": "node scripts/docs"
},
"author": "Nate Moore",
"contributors": [
{
"name": "Nate Moore",
"email": "[email protected]",
"url": "https://natemoo.re"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/natemoo-re/tslint-stencil.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^10.9.2",
"cli-spinner": "^0.2.8",
"colorette": "^1.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"prompts": "^1.1.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,md}": [
"prettier --write",
"git add"
]
}
}