-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "@arnica-io/dependency-scan",
"version": "1.0.0",
"description": "Arnica dependency security scan for GitHub Actions and Azure DevOps pipelines",
"main": "dist/cli.js",
"bin": {
"arnica-scan": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnica-io/dependency-scan.git"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"scan": "node dist/cli.js",
"test": "pnpm run typecheck"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/exec": "^1.1.1",
"@cyclonedx/cdxgen": "11.3.2"
},
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"types": "./dist/cli.d.ts",
"bugs": {
"url": "https://github.com/arnica-io/dependency-scan/issues"
},
"homepage": "https://github.com/arnica-io/dependency-scan#readme"
}