generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "@nodenv/actions",
"version": "4.0.0",
"private": true,
"description": "GitHub Action to select node version with nodenv",
"homepage": "https://github.com/nodenv/actions",
"license": "MIT",
"author": "Jason Karns <[email protected]> (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": "standard --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.10.1",
"@actions/tool-cache": "^2"
},
"devDependencies": {
"@actions/io": "^1",
"@vercel/ncc": "^0.38.1",
"jest": "^29",
"prettier-standard": "^15.0.1",
"standard": "^17"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"node",
"nodenv",
"version"
],
"jest": {
"modulePathIgnorePatterns": [
"/tmp"
]
},
"standard": {
"ignore": [
"dist"
]
}
}