This repository was archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
41
42
43
44
45
46
47
48
49
50
{
"name": "setup-linode-cli",
"version": "1.0.3",
"private": false,
"description": "Github Action to add Linode cli to your workflow",
"main": "lib/setup-python.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build --source-map --license licenses.txt",
"test": "jest --passWithNoTests",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brendon1555/setup-linode-cli.git"
},
"keywords": [
"actions",
"node",
"setup",
"linode",
"python"
],
"author": "Brendon1555",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/tool-cache": "^1.6.0",
"@types/semver": "^7.3.3",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@typescript-eslint/parser": "^4.1.0",
"@vercel/ncc": "^0.24.0",
"eslint": "^7.8.1",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.0.0",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"js-yaml": "^3.14.0",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7"
}
}