forked from codello/setup-lilypond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "setup-lilypond",
"description": "Set up your GitHub Actions workflow with a specific version of LilyPond",
"version": "0.1.0",
"author": "Codello",
"private": true,
"homepage": "https://github.com/codello/setup-lilypond",
"repository": {
"type": "git",
"url": "git+https://github.com/codello/setup-lilypond.git"
},
"bugs": {
"url": "https://github.com/codello/setup-lilypond/issues"
},
"keywords": [
"GitHub",
"Actions",
"LilyPond"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "npx jest",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "npx jest",
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.1",
"@gitbeaker/rest": "^41.3.0",
"fast-glob": "^3.3.2",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}