-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.28 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.28 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
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
117
118
119
120
121
122
{
"name": "@nodesecure/cli",
"version": "3.1.0",
"description": "Node.js security CLI",
"main": "./bin/index.js",
"bin": {
"node-secure": "./bin/index.js",
"nsecure": "./bin/index.js"
},
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"lint": "eslint bin src test workspaces public",
"lint:css": "stylelint \"**/*.css\"",
"lint-fix": "npm run lint -- --fix",
"prepublishOnly": "rimraf ./dist && npm run build && pkg-ok",
"build": "npm run build:front && npm run build:workspaces",
"build:front": "node ./esbuild.config.js",
"build:workspaces": "npm run build --ws --if-present",
"test": "npm run test:cli && npm run lint && npm run lint:css",
"test:cli": "node --no-warnings --test test/**/*.test.js",
"test:all": "npm run test --ws --if-present",
"coverage": "c8 --reporter=lcov npm run test",
"clean": "clear-ts-build"
},
"files": [
"bin",
"dist",
"src",
"public",
"views",
"i18n"
],
"workspaces": [
"workspaces/documentation-ui",
"workspaces/vis-network",
"workspaces/size-satisfies",
"workspaces/cache",
"workspaces/server"
],
"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 <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/cli/issues"
},
"homepage": "https://github.com/NodeSecure/cli#readme",
"devDependencies": {
"@nodesecure/size-satisfies": "^1.1.0",
"@nodesecure/vis-network": "^1.4.0",
"@openally/config.eslint": "^2.1.0",
"@openally/config.typescript": "1.2.1",
"@openally/httpie": "^1.0.0",
"@types/node": "^25.0.3",
"c8": "^10.1.2",
"cross-env": "^10.1.0",
"esbuild": "^0.27.0",
"eslint-plugin-jsdoc": "^61.1.11",
"http-server": "^14.1.1",
"pkg-ok": "^3.0.0",
"pretty-bytes": "^7.0.0",
"rimraf": "^6.0.1",
"stylelint": "^16.20.0",
"stylelint-config-standard": "^39.0.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@lit/task": "^1.0.3",
"@nodesecure/cache": "1.0.0",
"@nodesecure/documentation-ui": "^1.3.0",
"@nodesecure/flags": "^3.0.3",
"@nodesecure/i18n": "^4.0.2",
"@nodesecure/js-x-ray": "^12.0.0",
"@nodesecure/licenses-conformance": "^2.1.0",
"@nodesecure/mama": "2.1.1",
"@nodesecure/npm-registry-sdk": "^4.4.0",
"@nodesecure/ossf-scorecard-sdk": "^3.2.1",
"@nodesecure/rc": "^5.0.0",
"@nodesecure/report": "4.1.1",
"@nodesecure/scanner": "10.2.0",
"@nodesecure/server": "1.0.0",
"@nodesecure/utils": "^2.2.0",
"@nodesecure/vulnera": "^2.0.1",
"@openally/result": "^2.0.0",
"@topcli/cliui": "^1.1.0",
"@topcli/pretty-json": "^1.0.0",
"@topcli/prompts": "^2.0.0",
"@topcli/spinner": "4.2.1",
"filenamify": "^7.0.0",
"highlightjs-line-numbers.js": "^2.8.0",
"ini": "^6.0.0",
"json-diff-ts": "^4.8.1",
"lit": "^3.3.1",
"ms": "^2.1.3",
"open": "^11.0.0",
"sade": "^1.8.1",
"semver": "^7.6.3"
}
}