-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
{
"name": "@soos-io/api-client",
"version": "1.1.1",
"description": "This is the SOOS API Client for registered clients leveraging the various integrations to the SOOS platform.",
"main": "dist/index.js",
"scripts": {
"setup:install": "npm install",
"setup:clean-install": "npm ci",
"setup:update": "npx npm-check -u",
"setup:clean": "npx rimraf node_modules && npx rimraf package-lock.json",
"build": "tsc",
"build:clean": "npx rimraf build",
"format": "prettier ./src --check",
"format:fix": "prettier ./src --write",
"typecheck": "tsc --noEmit",
"test": "jest",
"check": "npm run format && npm run typecheck && npm run test && (npm outdated || exit 0)",
"patch": "npm version patch --no-git-tag-version",
"build:link": "npm run build && npm link"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"@soos-io",
"sca",
"package",
"soos api",
"vulnerabilities",
"licenses",
"sbom",
"governance",
"dast",
"soos",
"open source",
"oss",
"csa",
"sast",
"docker",
"containers"
],
"repository": {
"type": "git",
"url": "git+https://github.com/soos-io/soos-api-client.git"
},
"author": "SOOS",
"license": "MIT",
"bugs": {
"url": "https://github.com/soos-io/soos-api-client/issues"
},
"homepage": "https://github.com/soos-io/soos-api-client#readme",
"dependencies": {
"argparse": "^2.0.1",
"axios": "^1.7.9",
"form-data": "^4.0.1",
"glob": "^11.0.0",
"tslib": "^2.8.1"
},
"overrides": {
"glob": "^11.0.0"
},
"devDependencies": {
"@types/argparse": "^2.0.17",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.9",
"jest": "^29.1.2",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}