-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 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
{
"name": "@team-supercharge/audit-ci-wrapper",
"version": "3.1.3",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "lib/index.js",
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"audit": "npm run build && node lib/index.js",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "npm run lint -- --quiet --fix",
"test": "jest --config jestconfig.json",
"test:dev": "npm run test -- --watchAll",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"commitlint": "npx commitlint -f master -V",
"create-release": "npx standard-version",
"create-prerelease": "npx standard-version --prerelease alpha"
},
"engines": {
"npm": "7.x || 8.x || 9.x || 10.x"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"!*.map",
"!*.d.ts",
"lib/index.d.ts",
"configschema.json"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/argparse": "2.0.10",
"@types/event-stream": "4.0.0",
"@types/jest": "27.5.0",
"@types/node": "^20.10.7",
"@types/semver": "7.3.9",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "4.3.8",
"jest": "27.5.1",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"standard-version": "9.3.2",
"ts-jest": "27.1.4",
"typescript": "4.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"dependencies": {
"argparse": "2.0.1",
"chalk": "4.1.0",
"semver": "7.5.3"
}
}