-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "puml2code",
"version": "0.8.0",
"description": "PlantUML to code generator",
"main": "index.js",
"bin": {
"puml2code": "./bin/puml2code"
},
"scripts": {
"cli": "node src/cli.js",
"test": "MOCHA_FILE=junit/test-results.xml istanbul cover -- _mocha --recursive -R mocha-circleci-reporter",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"install": "node node_modules/pegjs/bin/pegjs src/parser/plantuml.pegjs",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jupe/puml2code.git"
},
"keywords": [
"plantuml",
"puml",
"code",
"pegjs",
"generator",
"uml",
"class",
"diagram"
],
"author": "Jussi Vatjus-Anttila",
"license": "MIT",
"bugs": {
"url": "https://github.com/jupe/puml2code/issues"
},
"homepage": "https://github.com/jupe/puml2code#readme",
"dependencies": {
"bluebird": "^3.7.2",
"camelcase": "^5.2.0",
"commander": "^4.1.1",
"debug": "^4.3.4",
"handlebars": "^4.1.1",
"lodash": "^4.17.21",
"pegjs": "^0.10.0",
"snyk": "^1.518.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"istanbul": "^1.1.0-alpha.1",
"mocha-circleci-reporter": "0.0.3",
"sinon": "^9.0.0"
},
"snyk": true
}