-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.94 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
96
97
98
99
100
101
102
103
104
{
"name": "circleci-audit",
"version": "0.0.0-development",
"description": "A CLI tool using that CircleCI API to audit potentially exposed secrets",
"author": "Ben Limmer @blimmer",
"bin": "./bin/run",
"homepage": "https://github.com/blimmer/circleci-audit",
"license": "MIT",
"main": "dist/index.js",
"repository": "blimmer/circleci-audit",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^1.23.1",
"@oclif/plugin-help": "^5.1.22",
"abort-controller": "~3.0.0",
"chalk": "~4.1.2",
"csv-writer": "^1.6.0",
"date-fns": "^2.29.3",
"form-data": "~4.0.0",
"node-fetch": "~2.6.7",
"table": "^6.8.1"
},
"devDependencies": {
"@oclif/test": "^2.2.19",
"@types/chai": "^4.3.4",
"@types/jest": "^29.2.5",
"@types/jest-when": "^3",
"@types/node": "^16.18.11",
"@types/node-fetch": "~2.6.2",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"chai": "^4.3.7",
"eslint": "^8.31.0",
"husky": ">=6",
"jest": "^29.3.1",
"jest-when": "^3.5.2",
"lint-staged": ">=10",
"oclif": "^3.4.3",
"openapi-typescript-codegen": "^0.23.0",
"pinst": ">=2",
"prettier": "^2.8.1",
"semantic-release": "^20.0.0",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"oclif": {
"bin": "circleci-audit",
"dirname": "circleci-audit",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"scripts": {
"api-codegen": "openapi --input https://circleci.com/api/v2/openapi.json --output src/circleci/api/generated --client node",
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint src/ --ext .ts --config .eslintrc.cjs",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "jest",
"version": "oclif readme && git add README.md",
"semantic-release": "semantic-release",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/blimmer/circleci-audit/issues",
"keywords": [
"circleci",
"audit",
"security",
"contexts",
"environment-variables"
],
"types": "dist/index.d.ts",
"packageManager": "yarn@3.3.1",
"resolutions": {
"@types/node-fetch@~2.6.2": "patch:@types/node-fetch@npm%3A2.6.2#./.yarn/patches/@types-node-fetch-npm-2.6.2-f96c00879e.patch"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write",
"src/commands/**/*.ts": "yarn prepack && git add README.md"
}
}