-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "vmware-image-builder-action",
"version": "0.10.0",
"private": true,
"description": "VMware Image Builder GitHub Action",
"main": "lib/index.js",
"scripts": {
"all": "npm run build && npm run format && npm run package && npm test",
"build": "tsc",
"format": "eslint --fix \"src/**/*.ts\"",
"generate-vib-client": "openapi-generator-cli generate -c openapitools.json --generator-key vib",
"lint": "eslint \"src/**/*.ts\"",
"package": "ncc build --source-map --license licenses.txt",
"preversion": "npm ci && npm run build && npm run package",
"postversion": "git push && git push --tags",
"postinstall": "npm run generate-vib-client",
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmware-labs/vmware-image-builder-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "BSD-2",
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/glob": "^0.5.0",
"@actions/io": "^1.1.3",
"@openapitools/openapi-generator-cli": "^2.5.2",
"adm-zip": "^0.5.10",
"ansi-colors": "^4.1.1",
"axios": "1.7.7",
"moment": "^2.29.4",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vercel/ncc": "^0.38.1",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.39.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.2.2",
"jest-circus": "^29.2.2",
"ts-jest": "^29.1.1",
"typescript": "^4.5.4",
"validator": "^13.7.0"
}
}