-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 1.42 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
{
"name": "grunt-documentation",
"description": "Use Grunt with documentation to generate great documentation for your JavaScript projects.",
"version": "1.2.3",
"homepage": "https://github.com/documentationjs/grunt-documentation",
"author": {
"name": "André Fiedler",
"email": "[email protected]"
},
"scripts": {
"test": "grunt",
"precommit": "lint-staged --verbose",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/documentationjs/grunt-documentation"
},
"bugs": {
"url": "https://github.com/documentationjs/grunt-documentation/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.0.0",
"grunt": "latest",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-nodeunit": "^1.0.0",
"husky": "^0.14.0",
"lint-staged": "^7.1.1",
"prettier": "^1.2.2",
"standard-version": "^4.0.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"documentation",
"jsdoc",
"grunt",
"gruntplugin"
],
"dependencies": {
"chalk": "^2.0.0",
"documentation": "4.0.0-rc.1",
"escape-string-regexp": "^1.0.5"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}