forked from IBM/audit-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.06 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
{
"name": "audit-ci",
"version": "6.6.1",
"description": "Audits NPM, Yarn, and PNPM projects in CI environments",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ruiwei/audit-ci.git"
},
"keywords": [
"audit",
"ci",
"npm",
"yarn",
"pnpm",
"security",
"github",
"actions",
"github-actions",
"circleci"
],
"bin": "./dist/bin.js",
"files": [
"dist/*.js",
"dist/*.d.ts",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts,.js,.cjs",
"lint:fix": "eslint . --ext .ts,.js,.cjs --fix",
"format": "prettier --write lib test",
"test": "c8 --check-coverage mocha",
"check-types": "tsc -p tsconfig.json --noEmit",
"schema": "ts-json-schema-generator -p ./docs/schema.d.ts -o ./docs/schema.json -t Schema"
},
"engines": {
"node": ">=12.9.0"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"escape-string-regexp": "^4.0.0",
"event-stream": "4.0.1",
"jju": "^1.4.0",
"JSONStream": "^1.3.5",
"readline-transform": "1.0.0",
"semver": "^7.0.0",
"tslib": "^2.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cross-spawn": "^6.0.2",
"@types/event-stream": "^4.0.0",
"@types/jju": "^1.4.2",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.55",
"@types/readline-transform": "^1.0.1",
"@types/semver": "^7.3.13",
"@types/sinon": "^10.0.13",
"@types/yargs": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"audit-types": "^0.5.6",
"c8": "^7.12.0",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^42.0.0",
"mocha": "^9.2.2",
"prettier": "^2.8.3",
"sinon": "^13.0.2",
"ts-json-schema-generator": "^1.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}