-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "vile-htmllint",
"version": "0.2.15",
"description": "Identify common style and maintainability issues in your HTML files.",
"main": "lib/index.js",
"files": [
"lib",
"LICENSE",
"README.md"
],
"author": "Brent Lintner <brent.lintner@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/forthright/vile-htmllint/issues"
},
"homepage": "https://github.com/forthright/vile-htmllint",
"repository": {
"type": "git",
"url": "https://github.com/forthright/vile-htmllint.git"
},
"scripts": {
"compile": "babel -d lib -m common src",
"compile-dev": "coffee -cbo .test test",
"dev": "bin/dev",
"test": "bin/test",
"test-cov": "bin/test-cov",
"update": "ncu -a",
"vile": "vile a -u -n",
"release-it": "release-it"
},
"dependencies": {
"bluebird": "^3.5.0",
"cjson": "^0.5.0",
"htmllint": "^0.6.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"coffee-script": "1.12.7",
"istanbul": "^0.4.5",
"mimus": "^0.2.6",
"mocha": "^3.4.2",
"release-it": "^2.8.0",
"sinon": "^3.0.0",
"sinon-chai": "^2.11.0",
"vile": "^0.19.0",
"vile-ncu": "^0.3.0",
"vile-stat": "^0.1.0"
},
"peerDependencies": {
"vile": ">=0.15.0"
}
}