-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "setup-rdflint",
"version": "3.0.1",
"description": "GitHub Action to setup rdflint",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/setup-rdflint.ts --outfile=dist/index.js --bundle --platform=node --target=node20",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/imas/setup-rdflint.git"
},
"keywords": [],
"author": "IM@Study",
"license": "MIT",
"bugs": {
"url": "https://github.com/imas/setup-rdflint/issues"
},
"homepage": "https://github.com/imas/setup-rdflint#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"@types/node": "^20.12.5"
},
"devDependencies": {
"esbuild": "^0.20.2",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.4"
},
"overrides": {
"@actions/http-client": "2.1.1"
},
"engines": {
"node": "20"
},
"simple-git-hooks": {
"pre-commit": "npm run format && npm run build"
}
}