-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.94 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
{
"name": "@alexispuga/jsdoc-template",
"version": "1.0.0-dev",
"description": "A decent template for JSDoc.",
"main": "publish.js",
"keywords": [
"JSDoc",
"template",
"redesign"
],
"homepage": "https://github.com/AlexisPuga/jsdoc-template",
"bugs": "https://github.com/AlexisPuga/jsdoc-template/issues",
"repository": {
"type": "git",
"url": "https://github.com/AlexisPuga/jsdoc-template.git"
},
"files": [
"static/{css,js}/jsdoc-template.*",
"static/**/*.min.*",
"tmpl/**/*",
"config.js"
],
"author": "Alexis Puga Ruíz",
"license": "Apache-2.0",
"scripts": {
"start": "NODE_ENV=test webpack serve --config webpack.test.js",
"build": "NODE_ENV=production webpack --config webpack.prod.js && npm run minify-docs",
"development": "NODE_ENV=development webpack serve --config webpack.dev.js",
"lint": "eslint . --cache",
"test": "jsdoc docs/examples -t templates/silent -a all --pedantic",
"minify-docs": "html-minifier --input-dir docs/demo --output-dir docs/demo --file-ext html --minify-css true --minify-js true --collapse-whitespace --conservative-collapse --remove-comments",
"pretest": "npm run lint",
"precommit": "npm run test",
"prepack": "npm run precommit && npm run build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy": "^0.3.2",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.7.0",
"eslint-webpack-plugin": "^4.0.0",
"hook-webpack-plugin": "^1.1.0",
"html-minifier": "^4.0.0",
"jsdoc-webpack-plugin": "git://github.com/AlexisPuga/jsdoc-webpack-plugin.git#v0.2.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.5.0",
"taffydb": "^2.7.3",
"webpack": "^5.66.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"jsdoc": "^4.0.2"
}
}