-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "plantuml-pipe",
"version": "1.6.0",
"description": "Generate multiple PlantUML diagrams with one JAVA process",
"author": {
"name": "Krisztián Balla",
"url": "https://github.com/krisztianb"
},
"license": "ISC",
"keywords": [
"uml",
"plantuml"
],
"devDependencies": {
"@types/binary-split": "1.0.1",
"@types/mocha": "10.0.1",
"@types/node": "18.16.17",
"@types/split2": "4.2.0",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.49.0",
"eslint-plugin-directory-mirror": "1.0.1",
"eslint-plugin-jsdoc": "46.8.1",
"eslint-plugin-ordered-imports": "0.6.0",
"eslint-plugin-unicorn": "48.0.1",
"image-size": "1.0.2",
"mocha": "10.2.0",
"prettier": "3.0.3",
"rimraf": "5.0.1",
"ts-essentials": "9.4.0",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"binary-split": "^1.0.5",
"split2": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krisztianb/plantuml-pipe.git"
},
"main": "dist/plantuml_pipe.js",
"types": "dist/plantuml_pipe.d.ts",
"files": [
"/dist",
"/scripts",
"/vendor",
"CHANGELOG.md"
],
"scripts": {
"lint": "eslint ./src ./test",
"format": "prettier --check ./src ./test",
"build": "rimraf dist && npx tsc",
"test": "mocha -r ts-node/register 'test/**/*.test.ts'",
"postinstall": "node scripts/testdot.js"
}
}