-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.34 KB
/
package.json
File metadata and controls
38 lines (38 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
{
"name": "npm-no-scripts",
"version": "1.0.1",
"description": "Verify NPM dependencies don't have lifecycle scripts",
"homepage": "https://github.com/cryptool-org/npm-no-scripts#readme",
"bugs": {
"url": "https://github.com/cryptool-org/npm-no-scripts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptool-org/npm-no-scripts.git"
},
"license": "MIT",
"author": "Bernd Busse",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/app.js --bundle --minify --platform=node --target=node24 --external:node-gyp/bin/node-gyp.js --outfile=dist/index.js",
"watch": "esbuild src/app.js --bundle --watch --platform=node --target=node24 --external:node-gyp/bin/node-gyp.js --outfile=dist/index.js",
"format": "prettier --cache -w .",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --max-warnings 0 --fix .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@npmcli/arborist": "^9.4.2",
"@npmcli/node-gyp": "^5.0.0",
"@npmcli/package-json": "^7.0.5",
"esbuild": "^0.27.7",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"neostandard": "^0.13.0",
"prettier": "^3.8.1",
"semver": "^7.7.4"
}
}