-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "patch-files-action",
"version": "1.0.7",
"description": "A simple utility action to patch JSON and YAML files",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch && npm run lint",
"package": "npm run build && npm run lint && npm test && ncc build src/index.ts -o dist",
"test": "jest --runInBand",
"test-watch": "jest --watch --runInBand",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "lefthook install",
"hook": "lefthook run pre-commit",
"hook:all": "lefthook run --all-files pre-commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onlyutkarsh/patch-files-action.git"
},
"keywords": [],
"author": "onlyutkarsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/onlyutkarsh/patch-files-action/issues"
},
"homepage": "https://github.com/onlyutkarsh/patch-files-action#readme",
"dependencies": {
"@actions/core": "^2.0.2",
"fast-glob": "^3.3.3",
"@types/js-yaml": "^4.0.9",
"fast-json-patch": "^3.1.1",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@evilmartians/lefthook": "^2.0.13",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@vercel/ncc": "^0.38.4",
"jest": "^30.2.0",
"jest-circus": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}