-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
76 lines (76 loc) · 1.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "htmlhint-loader",
"version": "1.3.1",
"description": "A webpack loader for htmlhint",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc mocha --require @babel/register",
"test:debug": "mocha --inspect --debug-brk",
"codecov": "cat ./coverage/lcov.info | codecov",
"lint": "xo index.js test/test.spec.js",
"start": "mocha --require @babel/register --watch",
"preversion": "npm test",
"postversion": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlhint/htmlhint-loader.git"
},
"keywords": [
"webpack",
"loader",
"htmlhint",
"linter",
"lint",
"html"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/htmlhint/htmlhint-loader/issues"
},
"homepage": "https://github.com/htmlhint/htmlhint-loader#readme",
"dependencies": {
"chalk": "^2.4.1",
"glob": "^7.1.3",
"htmlhint": "^0.10.1",
"loader-utils": "^1.0.2",
"strip-bom": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.3",
"@babel/preset-env": "^7.0.0-rc.3",
"@babel/register": "^7.0.0",
"chai": "^4.0.1",
"codecov-lite": "^0.1.3",
"coffeescript": "^2.3.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"raw-loader": "^0.5.1",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"strip-ansi": "^4.0.0",
"webpack": "^4.17.2",
"xo": "^0.23.0"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"index.js"
],
"xo": {
"space": true,
"envs": [
"node",
"mocha"
]
},
"nyc": {
"reporter": [
"lcovonly",
"text-summary",
"html"
]
}
}