-
Notifications
You must be signed in to change notification settings - Fork 168
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "plantuml-into-markdown",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build lib/main.js",
"test": "jest",
"test:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit"
},
"repository": {
"type": "git",
"url": "git@github.com:grassedge/plantuml-into-markdown.git"
},
"keywords": [
"actions",
"node",
"plantuml"
],
"author": "grassedge",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.1",
"@actions/github": "^1.1.0",
"axios": "^0.19.0",
"js-base64": "^2.5.1",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"plantuml-encoder": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@zeit/ncc": "^0.20.5",
"jest": "^26.2.2",
"jest-circus": "^26.2.2",
"jest-junit": "^11.1.0",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}