forked from bafolts/tplant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.45 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
{
"name": "tplant",
"version": "2.3.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": "ISC",
"author": "Brian Folts",
"contributors": [
"Marcos V. Rubido <[email protected]> (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": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest"
},
"dependencies": {
"commander": "^2.20.0",
"glob": "^7.1.3",
"plantuml-encoder": "^1.2.5",
"typescript": "^3.4.5"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.0",
"jest": "^24.8.0",
"pre-commit": "^1.2.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.5.4",
"tslint": "^5.16.0",
"tslint-microsoft-contrib": "^6.1.1"
},
"pre-commit": [
"lint",
"test"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}