-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
51
52
53
54
55
56
57
{
"name": "@nodenv/actions",
"version": "4.0.4",
"private": true,
"description": "GitHub Action to select node version with nodenv",
"homepage": "https://github.com/nodenv/actions",
"license": "MIT",
"author": "Jason Karns <jason.karns@gmail.com> (http://jasonkarns.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/nodenv/actions.git"
},
"bugs": {
"url": "https://github.com/nodenv/actions/issues"
},
"config": {
"actions": "node-version setup-nodenv"
},
"scripts": {
"clean": "git checkout -- */dist",
"lint": "eslint --fix",
"posttest": "npm run lint",
"test": "jest $npm_package_config_actions",
"prepare": "for a in $npm_package_config_actions; do (cd $a && echo $PWD && ncc build); done",
"preversion": "npm run prepare",
"version": "git add -- */dist",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2"
},
"devDependencies": {
"@actions/io": "2",
"@vercel/ncc": "^0.38.4",
"eslint": "9",
"jest": "30",
"neostandard": "^0.12.2"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"node",
"nodenv",
"version"
],
"jest": {
"modulePathIgnorePatterns": [
"/tmp"
]
},
"prettier": {
"semi": false,
"trailingComma": "none"
}
}