-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
60 lines (60 loc) · 1.28 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
{
"name": "html2pug",
"version": "4.0.0",
"description": "Converts HTML to Pug",
"main": "src/index.js",
"bin": {
"html2pug": "src/cli.js"
},
"dependencies": {
"get-stdin": "^6.0.0",
"has-flag": "^4.0.0",
"html-minifier": "^4.0.0",
"parse5": "^5.1.0"
},
"devDependencies": {
"ava": "^1.4.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"scripts": {
"test": "ava test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/izolate/html2pug.git"
},
"keywords": [
"html",
"pug",
"jade",
"convert",
"templates"
],
"author": "izolate <[email protected]> (http://izolate.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/izolate/html2pug/issues"
},
"homepage": "https://github.com/izolate/html2pug#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
}
}