-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "html-webpack-template-pug",
"version": "1.0.0",
"description": "A template for html-webpack-plugin made in pug template language",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha --delay",
"lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --cache",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/velenir/html-webpack-template-pug.git"
},
"keywords": [
"webpack",
"template",
"html-webpack-plugin",
"html-webpack-template",
"html-webpack-template-pug",
"pug"
],
"files": [
"layout.pug",
"mixins.pug"
],
"author": "Velenir",
"license": "MIT",
"engines": {
"node": ">=4"
},
"devDependencies": {
"chai": "^4.0.2",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.1.0",
"eslint-plugin-import": "^2.6.0",
"js-beautify": "1.7.5",
"mocha": "*",
"pug": "^2.0.0-rc.2",
"semantic-release": "15.9.6"
},
"peerDependencies": {
"html-webpack-plugin": "2.x",
"pug-loader": "2.x"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}