-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
95 lines (95 loc) · 2.51 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
{
"name": "audit-ci",
"version": "7.1.0",
"description": "Audits NPM, Yarn, and PNPM projects in CI environments",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"main": "./dist/index.cjs",
"homepage": "https://github.com/IBM/audit-ci",
"bugs": "https://github.com/IBM/audit-ci/issues",
"repository": {
"type": "git",
"url": "git@github.com:IBM/audit-ci.git"
},
"keywords": [
"audit",
"ci",
"npm",
"yarn",
"pnpm",
"security",
"github",
"actions",
"github-actions",
"circleci"
],
"bin": "./dist/bin.js",
"files": [
"dist/*",
"README.md"
],
"scripts": {
"tsc": "tsc -p tsconfig.build.json",
"build": "concurrently \"tsc -p tsconfig.build.json --noEmit\" \"tsup lib/index.ts lib/bin.ts\"",
"lint": "eslint . --ext .ts,.js,.cjs",
"lint:fix": "eslint . --ext .ts,.js,.cjs --fix",
"format": "prettier --write lib test",
"test": "vitest",
"coverage": "vitest run --coverage",
"check-types": "tsc -p tsconfig.json",
"schema": "ts-json-schema-generator -p ./docs/schema.d.ts -o ./docs/schema.json -t Schema"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"escape-string-regexp": "^4.0.0",
"event-stream": "4.0.1",
"jju": "^1.4.0",
"jsonstream-next": "^3.0.0",
"readline-transform": "1.0.0",
"semver": "^7.0.0",
"tslib": "^2.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/cross-spawn": "^6.0.6",
"@types/event-stream": "^4.0.5",
"@types/jju": "^1.4.5",
"@types/jsonstream-next": "^3.0.3",
"@types/node": "^18",
"@types/readline-transform": "^1.0.4",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitest/coverage-v8": "^1.6.0",
"audit-types": "^0.6.1",
"concurrently": "^8.2.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^48.0.1",
"prettier": "^3.2.5",
"ts-json-schema-generator": "^2.2.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}