forked from volta-cli/action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@volta-cli/action",
"version": "4.0.0",
"private": true,
"description": "Setup volta for usage in your CI runs",
"keywords": [
"actions",
"node",
"setup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/volta-cli/action.git"
},
"license": "MIT",
"author": "Robert Jackson <me@rwjblue.com>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all build:clean build:ts build:dist build:docs",
"build:clean": "rimraf dist lib",
"build:dist": "ncc build src/index.ts",
"build:ts": "tsc",
"build:docs": "action-docs --update-readme",
"lint": "npm-run-all lint:*",
"lint:files": "eslint --cache .",
"lint:types": "tsc --noEmit",
"test": "jest"
},
"devDependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@actions/glob": "^0.3.0",
"@actions/http-client": "^2.0.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.15",
"@types/semver": "^7.3.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vercel/ncc": "^0.34.0",
"action-docs": "^1.0.4",
"broccoli-test-helper": "^2.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-circus": "^28.1.3",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2",
"uuid": "^9.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"hooks": {
"after:bump": "npm run build"
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
},
"volta": {
"node": "16.16.0",
"npm": "8.17.0"
}
}