-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "@e18e/action-dependency-diff",
"version": "0.0.1",
"description": "A GitHub action to summarise the difference between dependency updates.",
"keywords": [
"action",
"github",
"workflow",
"provenance",
"diff"
],
"files": [
"build",
"action.yml"
],
"homepage": "https://github.com/e18e/action-dependency-diff#readme",
"bugs": {
"url": "https://github.com/e18e/action-dependency-diff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e18e/action-dependency-diff.git"
},
"license": "MIT",
"author": "James Garbutt (https://github.com/43081j)",
"type": "module",
"main": "main.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "node scripts/build.mjs",
"format": "prettier --write src test",
"lint": "node --run lint:format && node --run lint:js && node --run lint:types",
"lint:format": "prettier --check src test",
"lint:js": "eslint src test",
"lint:types": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"lockparse": "^0.5.0",
"module-replacements": "^2.11.0",
"pkg-types": "^2.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}