-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.29 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.29 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
{
"name": "examples-plugin-jsdoc",
"version": "1.0.4",
"description": "jsdoc plugin to add examples from external files",
"main": "index.js",
"scripts": {
"gitdown": "gitdown ./.README.md --output-file ./README.md",
"predocs": "rm -rf ./docs && rm -rf ./example/docs && mkdir docs && npm run example-docs && mv ./example/docs ./docs/example-docs",
"docs": "jsdoc --configure .jsdoc.json --verbose",
"complexity": "eslint index.js src/*.js test/*.js example/src/*.js example/test/*.js",
"style": "standard index.js src/*.js test/*.js example/src/*.js example/test/*.js",
"pretest": "npm run complexity && npm run style",
"test": "jest --verbose test",
"example-install": "npm --no-bin-links --prefix ./example install ./example",
"example-test": "npm run --prefix ./example test",
"example-docs": "npm run --prefix ./example docs"
},
"repository": {
"type": "git",
"url": "https://github.com/billmoser/examples-plugin-jsdoc.git"
},
"keywords": [
"jsdoc",
"plugin",
"examples"
],
"author": "Bill Moser",
"license": "MIT",
"devDependencies": {
"docdash": "^1.2.0",
"eslint": "^7.21.0",
"gitdown": "^3.1.4",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"standard": "^16.0.3"
},
"dependencies": {
"vm2": "^3.9.10"
}
}