-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "npm-diff",
"version": "1.1.0",
"description": "Generate a formatted diff of npm package-lock.json changes for pull requests",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/action.ts -o dist --minify --no-cache",
"lint": "eslint .",
"format": "prettier --check \"**/*.{ts,js,json,md}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json,md}\"",
"test": "node -r ts-node/register --test test/**/*.test.js"
},
"keywords": [
"npm",
"package-lock",
"diff",
"github-action"
],
"author": "stixx",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1"
}
}