-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 998 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
{
"name": "html-linter",
"version": "1.1.1",
"description": "A linter to check formatting of html files",
"bin": {
"html-linter": "./bin/html-linter.js"
},
"scripts": {
"start": "npm run compile && npm run lint",
"compile": "tsc",
"run": "node bin/html-linter --config html-linter.json",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepublish": "npm run lint && npm run compile"
},
"keywords": [
"html-linter",
"template-linter"
],
"author": "Heather Roberts",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/chinchiheather/html-linter.git"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.12.2",
"glob": "^7.1.2"
},
"devDependencies": {
"@types/node": "^8.0.58",
"prettier": "^1.14.3",
"ts-node": "^4.0.1",
"tslint": "^5.11.0",
"tslint-lines-between-class-members": "^1.3.1",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^2.6.2"
}
}