forked from clenemt/docdash
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 1.55 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
{
"name": "@mocha/docdash",
"version": "4.0.1",
"description": "A JSDoc template for Mocha, forked from docdash",
"keywords": [
"jsdoc",
"template"
],
"repository": {
"type": "git",
"url": "https://github.com/mochajs/mocha-docdash.git"
},
"license": "Apache-2.0",
"author": "Clement Moron <[email protected]>",
"contributors": [
"Peter Müller <[email protected]>",
"Christopher Hiller <[email protected]>",
"Craig Taub <[email protected]>"
],
"main": "publish.js",
"files": [
"publish.js",
"static",
"tmpl"
],
"scripts": {
"sync": "browser-sync start -s fixtures-doc -f fixtures-doc --reload-delay 1000 --no-ui --no-notify",
"test": "jsdoc -c fixtures/fixtures.conf.json",
"watch": "watch-run -d 1000 -p \"tmpl/**,static/**\" \"npm run test\"",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"prettier": {
"bracketSpacing": false,
"endOfLine": "auto",
"singleQuote": true
},
"dependencies": {
"taffydb": "^2.7.3"
},
"devDependencies": {
"auto-changelog": "^2.3.0",
"browser-sync": "^2.27.5",
"husky": "^4.2.5",
"jsdoc": "^3.6.7",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"watch-run": "^1.2.5"
},
"peerDependencies": {
"jsdoc": "^3.6.7"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,html,css,js,json,toml}": [
"prettier --write"
]
}
}