-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "actions-operator",
"version": "0.1.0",
"description": "operator actions",
"main": "lib/index.js",
"scripts": {
"dev": "tsc -w",
"build": "ncc build src/bootstrap/index.ts -o dist/bootstrap --license licenses.txt && ncc build src/cleanup/index.ts -o dist/cleanup --license licenses.txt",
"lint": "eslint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Adam Stokes <adam.stokes@canonical.com>",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.2.1",
"@actions/core": "^1.11.0",
"@actions/exec": "^1.0.4",
"@actions/glob": "^0.2.0",
"@types/semver": "^7.3.9",
"semver": "^7.3.7",
"ts-dedent": "^2.2.0",
"ts-retry": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"typescript": "^4.9.5",
"typescript-eslint": "^8.22.0"
}
}