-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.35 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
{
"name": "https-audit",
"version": "1.0.0",
"description": "Audit job for checking https setups is correct and certificates are valid",
"main": "build/dist/src/index.js",
"types": "build/dist/src/index.d.ts",
"scripts": {
"test": "TZ=UTC jest",
"cov": "TZ=UTC jest --coverage=true",
"build": "build src bin",
"build:js": "build --skip-typings src bin",
"build:types": "tsc --noEmit",
"lint": "eslint './src/**/*.{ts,tsx}' './bin/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}' './bin/**/*.{ts,tsx}'",
"ci-tsc": "checks tsc",
"ci-jest": "checks jest",
"ci-audit": "checks audit",
"ci-eslint": "checks eslint",
"ci-auto": "checks auto --hard-fail",
"prepare": "echo \"Make npm install devDependencies for this package by having a prepare script\"",
"prepack": "npm run build",
"prepublishOnly": "rm -rf build"
},
"dependencies": {
"@connectedcars/http-server": "^1.1.3",
"@connectedcars/logutil": "^6.0.0",
"@kubernetes/client-node": "^0.21.0",
"googleapis": "^140.0.1"
},
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.24.9",
"@babel/plugin-transform-class-properties": "7.24.7",
"@babel/plugin-transform-nullish-coalescing-operator": "7.24.7",
"@babel/plugin-transform-numeric-separator": "7.24.7",
"@babel/plugin-transform-optional-chaining": "7.24.8",
"@babel/preset-env": "7.24.8",
"@babel/preset-typescript": "7.24.7",
"@connectedcars/setup": "^0.23.3",
"@connectedcars/test": "^1.7.0",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"axios": "^1.7.2",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"gcp-metadata": "^6.1.0",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"prettier": "3.2.5",
"typescript": "5.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connectedcars/http-audit.git"
},
"author": "Connected Cars",
"license": "MIT",
"bugs": {
"url": "https://github.com/connectedcars/http-audit/issues"
},
"homepage": "https://github.com/connectedcars/http-audit#readme",
"engines": {
"node": ">=20.0.0"
}
}