-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.14 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
{
"name": "@paulo-ferraz-oliveira/parse-tool-versions",
"description": "Parse .tool-versions into GitHub Actions steps' outputs",
"version": "v1.0.3",
"license": "MIT",
"main": "index.mjs",
"devDependencies": {
"@actions/core": "1.11.0",
"eslint": "9.11.1",
"markdownlint-cli": "0.42.0",
"prettier": "3.3.3",
"@vercel/ncc": "0.38.2",
"yaml-lint": "1.7.0"
},
"scripts": {
"build": "ncc build index.mjs --no-cache",
"eslint-src": "eslint src/**/*.mjs",
"eslint-js": "eslint eslint.config.js",
"eslint-index": "eslint index.mjs",
"eslint": "npm run eslint-src && npm run eslint-js && npm run eslint-index",
"prettier-src": "prettier src/**/*.mjs --write",
"prettier-js": "prettier eslint.config.js",
"prettier-index": "prettier index.mjs",
"prettier": "npm run prettier-src && npm run prettier-js && npm run prettier-index",
"format-lint": "npm run prettier && npm run eslint",
"test": "echo \"Functional tests will be performed on GitHub via this project's workflows!\" && exit 1",
"dist": "npm install && npm run build && npm run format-lint && echo \"\nReady for submission!\""
}
}