-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1000 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1000 Bytes
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
{
"name": "package-json-validator",
"packageManager": "bun@1.3.11",
"private": true,
"main": "src/main.ts",
"type": "module",
"scripts": {
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"package": "bun build src/main.ts --outdir dist/ --target node --sourcemap=external",
"pre-commit": "bun lint && bun format && bun package && git add .",
"prepare": "husky",
"test": "bun test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExpediaGroup/package-json-validator.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Dan Adajian",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0"
},
"devDependencies": {
"@types/bun": "1.3.11",
"eslint": "10.2.0",
"husky": "9.1.7",
"prettier": "3.8.1",
"type-fest": "5.5.0",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
}
}