forked from mobb-dev/bugsy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.63 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
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
{
"name": "mobbdev",
"version": "0.0.52",
"description": "Automated secure code remediation tool",
"repository": "https://github.com/mobb-dev/bugsy",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"postinstall": "node ./src/post_install/cx_install.mjs",
"build": "tsc && tsup-node --env.NODE_ENV production",
"build:dev": "tsup-node --env.NODE_ENV development",
"test": "TOKEN=$(../../scripts/login_auth0.sh) vitest run",
"test:watch": "TOKEN=$(../../scripts/login_auth0.sh) vitest",
"lint": "eslint --cache --max-warnings 0 --ignore-path .eslintignore --ext .ts,.tsx,.jsx .",
"lint:fix": "eslint --fix --cache --max-warnings 0 --ignore-path .eslintignore --ext .js,.ts,.tsx,.jsx .",
"lint:fix:files": "eslint --fix --cache --max-warnings 0 --ignore-path .eslintignore --ext .js,.ts,.tsx,.jsx",
"prepack": "dotenv-vault pull production .env && pnpm build"
},
"bin": {
"mobbdev": "bin/cli.mjs"
},
"author": "",
"license": "MIT",
"dependencies": {
"@gitbeaker/rest": "39.13.0",
"@octokit/graphql": "5.0.5",
"@octokit/plugin-rest-endpoint-methods": "7.0.1",
"@octokit/request-error": "3.0.3",
"adm-zip": "0.5.10",
"axios": "1.5.0",
"chalk": "5.3.0",
"chalk-animation": "2.0.3",
"configstore": "6.0.0",
"debug": "4.3.4",
"dotenv": "16.0.3",
"extract-zip": "2.0.1",
"globby": "13.2.2",
"graphql": "16.8.1",
"graphql-request": "5.0.0",
"inquirer": "9.2.7",
"istextorbinary": "6.0.0",
"nanospinner": "1.1.0",
"node-fetch": "3.3.1",
"octokit": "2.0.14",
"open": "8.4.2",
"semver": "7.5.0",
"simple-git": "3.19.1",
"snyk": "1.1118.0",
"supports-color": "9.4.0",
"tar": "6.2.0",
"tmp": "0.2.1",
"yargs": "17.7.2",
"zod": "3.22.3"
},
"devDependencies": {
"@octokit/plugin-rest-endpoint-methods": "7.0.1",
"@octokit/request-error": "3.0.3",
"@types/adm-zip": "0.5.0",
"@types/chalk-animation": "1.6.1",
"@types/configstore": "6.0.0",
"@types/debug": "4.1.8",
"@types/inquirer": "9.0.3",
"@types/semver": "7.5.0",
"@types/tar": "^6.1.6",
"@types/tmp": "0.2.3",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.36.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"prettier": "2.8.4",
"tsup": "7.2.0",
"typescript": "4.9.3",
"vitest": "0.26.2"
},
"engines": {
"node": ">=12.20.0"
},
"files": [
"bin",
"dist",
".env",
"src/post_install"
]
}