-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
119 lines (119 loc) · 3.06 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "jsdoc-baseline",
"version": "0.1.4",
"description": "A basic template for JSDoc.",
"main": "index.js",
"scripts": {
"build": "node_modules/.bin/hereby build",
"coverage": "node_modules/.bin/hereby coverage",
"coverage-report": "node_modules/.bin/hereby coverage-report",
"css": "node_modules/.bin/hereby css",
"default": "node_modules/.bin/hereby",
"dev": "node_modules/.bin/hereby dev",
"format": "node_modules/.bin/hereby format",
"js": "node_modules/.bin/hereby js",
"license-check": "node_modules/.bin/hereby license-check",
"lint": "node_modules/.bin/hereby lint",
"prepare": "node .husky/install.js",
"test": "node_modules/.bin/hereby test"
},
"repository": {
"type": "git",
"url": "git://github.com/hegemonic/jsdoc-baseline.git"
},
"keywords": [
"jsdoc",
"api",
"docs",
"documentation",
"template"
],
"author": {
"name": "Jeff Williams",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hegemonic/jsdoc-baseline/issues"
},
"type": "module",
"exports": {
".": {
"import": "./index.js"
},
"./lib/*": {
"import": "./lib/*"
},
"./lib/tasks/*": {
"import": "./lib/tasks/*"
}
},
"homepage": "https://github.com/hegemonic/jsdoc-baseline",
"dependencies": {
"@jsdoc/core": "^0.5.8",
"@jsdoc/tag": "^0.2.11",
"@jsdoc/task-runner": "^0.2.5",
"@jsdoc/util": "^0.3.3",
"@messageformat/core": "^3.4.0",
"@sindresorhus/slugify": "^2.2.1",
"catharsis": "^0.9.0",
"deep-extend": "^0.6.0",
"escape-string-regexp": "^5.0.0",
"fast-glob": "^3.3.2",
"highlight.js": "^11.10.0",
"html-escaper": "^3.0.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"nunjucks": "^3.2.4",
"ow": "^2.0.0",
"spdx-license-list": "^6.9.0",
"strip-json-comments": "^5.0.1"
},
"optionalDependencies": {
"prettier": "^3.4.1"
},
"devDependencies": {
"@jsdoc/doclet": "^0.2.11",
"@jsdoc/eslint-config": "^2.0.0",
"@jsdoc/prettier-config": "^0.2.8",
"@jsdoc/test-matchers": "^0.2.6",
"@parcel/transformer-sass": "^2.13.2",
"@shoelace-style/shoelace": "^2.18.0",
"bootstrap": "^5.3.2",
"c8": "^10.1.2",
"csso-cli": "^4.0.2",
"easy-ease": "^1.0.9",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"execa": "^9.5.1",
"globals": "^15.12.0",
"hereby": "^1.10.0",
"husky": "^9.1.7",
"jasmine": "^5.4.0",
"jasmine-console-reporter": "^3.1.0",
"license-check-and-add": "^4.0.5",
"parcel": "^2.13.2",
"parcel-namer-rewrite": "^2.0.0-rc.3",
"prettier": "^3.4.1",
"sass": "^1.81.0"
},
"engines": {
"node": ">=v16.0.0"
},
"targets": {
"default": {
"context": "browser",
"optimize": true
},
"main": false
},
"browserslist": "defaults",
"parcel-namer-rewrite": {
"rules": {
"^(?:.+/)?(.+)$": "$1"
}
}
}