-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@universalweb/docredux",
"type": "module",
"company": "Universal Web",
"homepage": "https://universalweb.io",
"version": "3.2.7",
"description": "Dead simple documentation generator for JSDOC syntax.",
"main": "index.js",
"readme": "README.md",
"scripts": {
"build": "node index.js",
"buildProduction": "production=true node index.js",
"changelog": "npx auto-changelog -p --sort-commits date-desc && git add CHANGELOG.md",
"bumpVersion": "npm version patch --force && cd ./source/ && npm version patch --force",
"publishAll": "npm publish ./npm/ && cd ./github/ && npm publish && cd ../",
"publish": "npm run bumpVersion && npm run changelog && npm run buildProduction && npm run publishAll"
},
"keywords": [
"docs",
"doc generation",
"utility",
"documentation",
"Universal Web"
],
"dependencies": {
"@universalweb/acid": "^3.0.38",
"comment-parser": "*",
"eslint": "*",
"eslint-plugin-jsdoc": "*",
"prettier-eslint": "*"
},
"author": {
"email": "info@universalweb.io",
"name": "universalweb"
},
"auto-changelog": {
"commitLimit": false,
"output": "CHANGELOG.md",
"template": "./maintenance/keepachangelog.hbs",
"unreleased": true
},
"repository": "https://github.com/universalweb/docredux",
"publishConfig": {
"access": "public"
},
"license": "ISC",
"devDependencies": {
"auto-changelog": "^2.4.0",
"@babel/core": "*",
"@babel/eslint-parser": "*",
"@babel/preset-env": "*"
}
}