-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "htmlcs",
"version": "0.4.1",
"description": "html hint tool, focused on semantic code style.",
"main": "index.js",
"browser": "browser.js",
"bin": {
"htmlcs": "./bin/htmlcs"
},
"dependencies": {
"css-select": "^1.1.0",
"cssbeautify": "^0.3.1",
"differ-cli": "^0.3.0",
"domelementtype": "^1.1.3",
"exit": "^0.1.2",
"html-code-gen": "stable",
"html-nest-rule": "stable",
"htmlparser2": "^3.8.2",
"jformatter": "stable",
"manis": "^0.3.0",
"walk": "^2.3.9",
"yargs": "^8.0.1"
},
"devDependencies": {
"coveralls": "^2.11.8",
"emmet": "^1.3.2",
"fecs": "stable",
"istanbul": "^0.4.2",
"jasmine-node": "^2.0.0",
"shelljs": "^0.7.7"
},
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "fecs -v && fecs lib test index.js --type=js --rule",
"coverage": "istanbul cover jasmine-node --captureExceptions test/",
"test": "npm run lint && npm run coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ecomfe/htmlcs.git"
},
"keywords": [
"html",
"hint",
"lint",
"semantic"
],
"author": "nighca@live.cn",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecomfe/htmlcs/issues"
},
"homepage": "https://github.com/ecomfe/htmlcs"
}