-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "setup-elp",
"license": "MIT",
"private": true,
"scripts": {
"markdownlint": "markdownlint *.md ./github/**/*.md",
"yamllint": "yamllint .github/workflows/**.yml && yamllint .*.yml && yamllint *.yml",
"eslint": "eslint src/**/*.js && eslint test/**/*.js",
"clean-dist": "rm -rf ./dist",
"build": "ncc build src/setup-elp.js --no-cache --license licenses.txt",
"format": "prettier src/**/*.js --write && prettier test/**/*.js --write && prettier *.js --write",
"lint": "npm run markdownlint && npm run yamllint && npm run eslint",
"build-dist": "npm run clean-dist && npm install && npm run build && npm run format && npm run lint",
"test": "node test/setup-elp.test.js"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/tool-cache": "2.0.1"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
"eslint": "8.43.0",
"markdownlint-cli": "0.35.0",
"prettier": "2.8.8",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=20"
}
}