-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
116 lines (116 loc) · 2.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@nodesecure/cli",
"version": "2.5.0",
"description": "Node.js security CLI",
"main": "./bin/index.js",
"bin": {
"node-secure": "./bin/index.js",
"nsecure": "./bin/index.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint bin src test workspaces",
"lint-fix": "npm run lint -- --fix",
"prepublishOnly": "rimraf ./dist && npm run build && pkg-ok",
"build": "node ./esbuild.config.js",
"test": "npm run test-only && npm run lint",
"test-only": "glob -c \"node --loader=esmock --no-warnings --test-concurrency 1 --test\" \"test/**/*.test.js\"",
"coverage": "c8 --reporter=lcov npm run test",
"clear:cache": "node ./scripts/clear-cache.js"
},
"files": [
"bin",
"dist",
"src",
"views",
"i18n"
],
"workspaces": [
"workspaces/documentation-ui",
"workspaces/vis-network",
"workspaces/size-satisfies"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/cli.git"
},
"keywords": [
"node",
"nodejs",
"security",
"cli",
"sast",
"scanner",
"static",
"code",
"analysis",
"node_modules",
"tree",
"npm",
"registry",
"graph",
"visualization",
"dependencies"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/cli/issues"
},
"homepage": "https://github.com/NodeSecure/cli#readme",
"devDependencies": {
"@myunisoft/httpie": "^5.0.0",
"@nodesecure/size-satisfies": "^1.1.0",
"@nodesecure/vis-network": "^1.4.0",
"@openally/config.eslint": "^1.1.0",
"@types/node": "^22.2.0",
"c8": "^10.1.2",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"esmock": "^2.6.7",
"glob": "^11.0.0",
"http-server": "^14.1.1",
"pkg-ok": "^3.0.0",
"pretty-bytes": "^6.1.1",
"rimraf": "^6.0.1",
"server-destroy": "^1.0.1",
"strip-ansi": "^7.1.0"
},
"dependencies": {
"@nodesecure/documentation-ui": "^1.3.0",
"@nodesecure/flags": "^2.4.0",
"@nodesecure/i18n": "^4.0.1",
"@nodesecure/licenses-conformance": "^2.1.0",
"@nodesecure/npm-registry-sdk": "^3.0.0",
"@nodesecure/ossf-scorecard-sdk": "^3.2.1",
"@nodesecure/rc": "^4.0.0",
"@nodesecure/report": "^3.0.0",
"@nodesecure/scanner": "^6.1.0",
"@nodesecure/utils": "^2.2.0",
"@nodesecure/vulnera": "^2.0.1",
"@openally/result": "^1.3.0",
"@polka/send-type": "^0.5.2",
"@topcli/cliui": "^1.1.0",
"@topcli/prompts": "^2.0.0",
"@topcli/spinner": "^2.1.2",
"cacache": "^19.0.1",
"dotenv": "^16.4.5",
"filenamify": "^6.0.0",
"highlightjs-line-numbers.js": "^2.8.0",
"ini": "^5.0.0",
"kleur": "^4.1.5",
"ms": "^2.1.3",
"open": "^10.1.0",
"pino": "^9.3.2",
"pino-pretty": "^13.0.0",
"polka": "^0.5.2",
"sade": "^1.8.1",
"semver": "^7.6.3",
"sirv": "^3.0.0",
"ws": "^8.18.0",
"zup": "0.0.2"
}
}