-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.33 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.33 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
{
"name": "@connectedcars/test",
"version": "4.1.0",
"description": "Test utilities for Node projects",
"main": "build/dist/src/index.js",
"bin": {
"checks": "build/dist/bin/checks.js"
},
"types": "build/dist/src/index.d.ts",
"scripts": {
"test": "TZ=UTC jest",
"build": "build src bin",
"build:js": "build --skip-typings -- src bin",
"build:types": "tsc --emitDeclarationOnly",
"lint": "eslint './src/**/*.{ts,tsx}' './bin/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}' './bin/**/*.{ts,tsx}'",
"prepare": "echo \"Make npm install devDependencies for this package by having a prepare script\"",
"prepack": "npm run build",
"prepublishOnly": "rm -rf build",
"ci-tsc": "./build/dist/bin/checks.js tsc",
"ci-jest": "./build/dist/bin/checks.js jest",
"ci-audit": "./build/dist/bin/checks.js audit",
"ci-eslint": "./build/dist/bin/checks.js eslint -- './src/**/*.{ts,tsx}' './bin/**/*.{ts,tsx}'",
"cov": "TZ=UTC jest --coverage=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connectedcars/node-test.git"
},
"author": "Connected Cars <oss@connectedcars.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/connectedcars/node-test/issues"
},
"homepage": "https://github.com/connectedcars/node-test#readme",
"devDependencies": {
"@babel/cli": "7.28.0",
"@babel/core": "7.28.0",
"@babel/preset-env": "7.28.0",
"@babel/preset-typescript": "7.27.1",
"@connectedcars/setup": "^1.3.3",
"@eslint/js": "9.31.0",
"@types/deep-equal": "1.0.4",
"@types/jest": "30.0.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "8.38.0",
"axios": "^1.12.2",
"babel-jest": "30.0.5",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-prettier": "5.5.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "16.3.0",
"jest": "30.0.5",
"jest-circus": "30.0.5",
"prettier": "3.6.2",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0"
},
"dependencies": {
"@types/node": "^22.18.6",
"@types/sinon": "*",
"deep-equal": "2.2.3",
"mysql2": "^3.15.3",
"sinon": "^17.0.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"build/dist"
]
}