-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
92 lines (92 loc) · 2.49 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "plantuml-parser",
"version": "0.4.0",
"description": "Parse PlantUML with JavaScript or TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"conf.js",
"dist/**/*"
],
"dependencies": {
"async": "^3.2.0",
"fast-glob": "^3.2.4",
"get-stdin": "^8.0.0",
"json-colorizer": "^2.2.2",
"pegjs-backtrace": "^0.2.0",
"read-vinyl-file-stream": "^2.0.3",
"require-dir": "^1.2.0",
"serialize-error": "^7.0.1",
"yargs": "^16.0.3"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fancy-log": "^1.3.3",
"gulp": "^5.0.0",
"gulp-mocha": "^8.0.0",
"gulp-pegjs": "^0.2.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"pegjs": "^0.10.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"ts-pegjs": "^0.2.7",
"typescript": "^4.0.3"
},
"bin": {
"plantuml-parser": "dist/bin/cli.js"
},
"scripts": {
"prepublishOnly": "git clean -f -f -d -x -e 'node_modules' && npm run build",
"start": "node dist/bin/cli.js",
"build": "gulp build",
"test": "nyc gulp test && nyc check-coverage --lines 65 --functions 75 --branches 50 && eslint '**/*.js' '**/*.ts' && git diff --check $(git hash-object -t tree /dev/null)",
"watch": "gulp watch",
"format-fix": "eslint --fix '**/*.js' '**/*.ts'",
"fixtures": "gulp test-fixtures-update && git add -u test/fixtures || true",
"coverage-report": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enteee/plantuml-parser.git"
},
"keywords": [
"PlantUML"
],
"author": "Ente",
"license": " Apache-2.0",
"bugs": {
"url": "https://github.com/Enteee/plantuml-parser/issues"
},
"homepage": "https://github.com/Enteee/plantuml-parser#readme",
"nyc": {
"all": true,
"sourceMap": true,
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts",
"dist/**/*.js"
],
"exclude": [
"**/*.d.ts",
"dist/plantuml-trace.js",
"dist/bin/"
]
}
}