-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.38 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
{
"name": "posthtml-hint",
"version": "1.0.0",
"description": "HTML Hint for PostHTML",
"engines": {
"node": ">=8",
"npm": ">=3"
},
"main": "index.js",
"scripts": {
"clean": "echo '=> Cleaning' && rm -rf .nyc_output coverage test/node_modules",
"pretest": "echo '=> Linting' && standard",
"test": "echo '=> Testing' npm run clean && nyc ava 'test/**/*.js'",
"start": "echo '=> Starting' && npm test",
"lint": "standard",
"lint:fix": "standard --fix"
},
"nyc": {
"all": true,
"require": "babel-register",
"include": [
"lib",
"test"
],
"extension": [
".js"
]
},
"standard": {
"ignore": []
},
"dependencies": {
"htmlhint": "1.1.2",
"log-symbols": "5.1.0",
"posthtml-render": "3.0.0",
"text-table": "0.2.0"
},
"devDependencies": {
"ava": "4.1.0",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"posthtml": "0.16.6",
"standard": "16.0.4"
},
"keywords": [
"HTML",
"HTMLHINT",
"PostHTML",
"PostHTML Hint"
],
"author": {
"name": "Michael Ciniawky",
"email": "michael.ciniawsky@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/posthtml/posthtml-hint"
},
"bugs": {
"url": "https://github.com/posthtml/posthtml-hint/issues"
},
"homepage": "https://github.com/posthtml/posthtml-hint#readme",
"license": "MIT"
}