forked from eclipse-velocitas/release-documentation-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "renderer",
"version": "1.0.0",
"description": "Markdown renderer",
"dependencies": {
"@actions/core": "^1.10.0",
"fs": "0.0.1-security",
"guid-typescript": "^1.0.9",
"handlebars": "4.7.7",
"xml2js": "^0.6.2"
},
"main": "index.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"package": "ncc build ./src/action.ts -o dist/documentation/render",
"test": "./node_modules/.bin/cucumber-js -p default"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^10.3.1",
"@cucumber/pretty-formatter": "^1.0.0",
"@types/chai": "^4.3.3",
"@types/chai-string": "^1.4.2",
"@types/cucumber": "^7.0.0",
"@types/node": "^18.8.3",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vercel/ncc": "0.34.0",
"chai": "^4.3.6",
"chai-string": "^1.5.0",
"cucumber-console-formatter": "^1.0.0",
"cucumber-tsflow": "^4.0.0-preview.7",
"eslint": "^8.25.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}