-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "moleculer-docgen",
"version": "0.3.0",
"description": "Documentation generator for Moleculer services",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js -- -t examples/README.test.md -s services/test.service.js -d out/README.test.md",
"demo": "node index.js -t templates/README.db.md -s services/db.service.js -d out/README.db.md",
"lint": "eslint --ext=.js .",
"lint:fix": "eslint --ext=.js --fix .",
"preversion": "npm run lint",
"postversion": "git push && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moleculerjs/moleculer-docgen.git"
},
"keywords": [
"microservices",
"microservice",
"moleculer"
],
"author": "MoleculerJS",
"license": "MIT",
"devDependencies": {
"eslint": "7.23.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-security": "1.4.0",
"nodemon": "^2.0.15",
"pre-commit": "1.2.2"
},
"pre-commit": [
"lint"
],
"bugs": {
"url": "https://github.com/moleculerjs/moleculer-docgen/issues"
},
"homepage": "https://github.com/moleculerjs/moleculer-docgen#readme",
"engines": {
"node": ">= 10.x.x"
},
"dependencies": {
"args": "^5.0.1",
"bluebird": "3.7.2",
"chalk": "4.1.0",
"handlebars": "^4.7.7",
"jsdoc-api": "7.1.0",
"lodash": "^4.17.21"
}
}