-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.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
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
{
"name": "@nodesecure/ci",
"version": "1.7.0",
"description": "NodeSecure tool enabling secured continuous delivery",
"bin": {
"nsci": "./dist/bin/cli.js"
},
"main": "./dist/src/reporting/run.js",
"exports": "./dist/src/reporting/run.js",
"typesVersions": {
"*": {
"run.d.ts": [
"dist/src/reporting/run.d.ts"
]
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"keywords": [
"node",
"nodejs",
"security",
"cli",
"sast",
"scanner",
"static",
"code",
"analysis",
"node_modules",
"tree",
"npm",
"registry",
"graph",
"visualization",
"dependencies",
"ci",
"continuous integration"
],
"author": "NodeSecure",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/ci.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/ci/issues"
},
"homepage": "https://github.com/NodeSecure/ci#readme",
"scripts": {
"prestart": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"start": "node dist/bin/cli.js",
"build": "rimraf ./dist && tsc",
"test": "glob -c \"tsx --test\" \"./src/**/*.spec.ts\"",
"lint": "eslint ."
},
"devDependencies": {
"@openally/config.eslint": "^1.0.0",
"@openally/config.typescript": "^1.0.3",
"@types/lodash.set": "^4.3.9",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.3.0",
"@types/pluralize": "^0.0.33",
"@types/sade": "^1.7.8",
"glob": "^11.0.0",
"mock-fs": "^5.2.0",
"rimraf": "^6.0.1",
"tsx": "^4.17.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@nodesecure/i18n": "^4.0.1",
"@nodesecure/js-x-ray": "^7.3.0",
"@nodesecure/rc": "^4.0.0",
"@nodesecure/scanner": "^6.1.0",
"@nodesecure/vulnera": "^2.0.1",
"@openally/result": "^1.3.0",
"@slimio/async-cli-spinner": "^0.5.2",
"ajv": "^8.12.0",
"kleur": "^4.1.5",
"lodash.set": "^4.3.2",
"pluralize": "^8.0.0",
"pretty-ms": "^9.0.0",
"sade": "^1.8.1",
"table": "^6.8.1",
"ts-pattern": "^5.3.1"
}
}