-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
66 lines (66 loc) · 1.46 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
{
"name": "tplant",
"version": "3.1.3",
"description": "Typescript to PlantUML",
"keywords": [
"class diagram",
"uml diagram",
"plantuml",
"typescript",
"uml",
"cli"
],
"homepage": "https://github.com/bafolts/tplant#readme",
"bugs": {
"url": "https://github.com/bafolts/tplant/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bafolts/tplant.git"
},
"license": "GPL-3.0",
"author": "Brian Folts",
"contributors": [
"Marcos V. Rubido <me@marcosvrs.com> (https://marcosvrs.com/)"
],
"files": [
"dist"
],
"main": "dist/tplant.js",
"types": "dist/tplant.d.ts",
"bin": {
"tplant": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:dev": "tsc --sourceMap -w",
"lint": "eslint src --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest"
},
"dependencies": {
"commander": "^12.0.0",
"glob": "^10.3.10",
"node-plantuml": "0.9.0",
"plantuml-encoder": "^1.4.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"engines": {
"node": ">=16.0.0"
}
}