-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 KB
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
54
55
56
57
58
59
{
"name": "package-json-validator",
"packageManager": "bun@1.2.17",
"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.11.1",
"@actions/github": "6.0.1"
},
"devDependencies": {
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"eslint": "9.34.0",
"husky": "9.1.7",
"jest": "30.1.1",
"prettier": "3.6.2",
"type-fest": "5.0.1",
"typescript": "5.9.2",
"typescript-eslint": "8.41.0"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
"jsc": {
"target": "esnext"
}
}
]
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"lib"
],
"clearMocks": true
}
}