forked from htmlhint/HTMLHint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.52 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.52 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "htmlhint",
"version": "0.11.0",
"description": "The Static Code Analysis Tool for your HTML",
"repository": {
"type": "git",
"url": "https://github.com/htmlhint/HTMLHint.git"
},
"bugs": {
"url": "https://github.com/htmlhint/HTMLHint/issues"
},
"keywords": [
"html",
"hint",
"analysis",
"javascript"
],
"license": "MIT",
"bin": {
"htmlhint": "./bin/htmlhint"
},
"main": "dist/htmlhint.js",
"module": "src/core.js",
"scripts": {
"commit": "npx git-cz",
"prettier": "prettier --write ./**/*.{js,json,md} --ignore-path ./.prettierignore",
"test": "mocha --recursive",
"build": "webpack",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}"
}
]
},
"dependencies": {
"async": "2.6.1",
"colors": "1.3.2",
"commander": "2.17.1",
"glob": "7.1.3",
"parse-glob": "3.0.4",
"path-parse": "1.0.6",
"request": "2.88.0",
"strip-json-comments": "2.0.1",
"xml": "1.0.1"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@commitlint/travis-cli": "8.1.0",
"commitizen": "4.0.3",
"commitlint": "8.1.0",
"cz-conventional-changelog": "3.0.2",
"cz-customizable": "6.2.0",
"expect.js": "0.3.1",
"husky": "3.0.3",
"istanbul": "0.4.5",
"lint-staged": "9.2.1",
"mocha": "5.2.0",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"semantic-release": "15.13.21",
"travis-deploy-once": "^5.0.7",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"optionalDependencies": {
"csslint": "^1.0.5",
"jshint": "^2.9.6"
}
}