-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "javatopuml",
"version": "1.1.3",
"description": "Extracts PlantUML from Java Code",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin/javatopuml.js",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"build": "tsc",
"dev": "tsc-watch",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [
"java",
"plantuml",
"uml"
],
"author": {
"name": "Joshua Jeschek",
"email": "[email protected]",
"url": "https://github.com/joshuajeschek"
},
"repository": "github:/joshuajeschek/javatopuml",
"bugs": "https://github.com/joshuajeschek/javatopuml/issues",
"homepage": "https://github.com/joshuajeschek/javatopuml",
"license": "MIT",
"devDependencies": {
"@types/bytebuffer": "^5.0.43",
"@types/node": "^17.0.10",
"@types/strip-comments": "^2.0.1",
"@types/yargs": "^17.0.8",
"prettier": "^2.5.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
},
"dependencies": {
"endent": "^2.1.0",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"strip-comments": "^2.0.1",
"xregexp": "^5.1.0",
"yargs": "^17.3.1"
}
}