-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 KB
/
package.json
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
{
"name": "is-my-node-ok",
"version": "0.1.1",
"description": "Package that checks if your Node.js installation is vulnerable to known security vulnerabilities. Minimum Node.js version: 7.10.1",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"ts-watch": "tsc -p ./tsconfig.json --watch",
"test": "node ./dist/test.js",
"lint": "biome format --write ./src"
},
"homepage": "https://github.com/mirasayon/is-my-node-ok#readme",
"author": "Mirasayon <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mirasayon/is-my-node-ok.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "commonjs",
"types": "./dist/index.d.ts",
"bin": {
"is-my-node-ok": "dist/cli.js"
},
"keywords": [
"security",
"nodejs",
"environment"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"cli-color": "^2.0.4",
"semver": "^7.6.3"
},
"engines": {
"node": ">=7.10.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@swc/core": "^1.7.40",
"@types/cli-color": "^2.0.6",
"@types/node": "^22.8.1",
"@types/semver": "^7.5.8",
"typescript": "^5.6.3"
}
}