forked from ExpediaGroup/package-json-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "package-json-validator",
"packageManager": "[email protected]",
"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 jest"
},
"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": "1.10.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"eslint": "9.1.1",
"husky": "9.0.11",
"jest": "29.7.0",
"prettier": "3.2.5",
"type-fest": "4.16.0",
"typescript": "5.4.5",
"typescript-eslint": "7.7.1"
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": "@swc/jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"lib"
],
"clearMocks": true
}
}