forked from izolate/html2pug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.53 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
{
"name": "html2pug",
"version": "4.0.0",
"description": "Converts HTML to Pug",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"html2pug": "bin/html2pug"
},
"dependencies": {
"get-stdin": "^6.0.0",
"has-flag": "^4.0.0",
"html-minifier": "^4.0.0",
"parse5": "^5.1.0"
},
"devDependencies": {
"@types/html-minifier": "^3.5.3",
"@types/parse5": "^5.0.2",
"ava": "^2.3.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier": "^1.16.4",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2"
},
"scripts": {
"lint": "tslint --fix -p tsconfig.json",
"test": "ava --verbose",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"lint-staged": {
"*.ts": [
"npm run lint",
"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"
}
}
}