-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.84 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
{
"name": "@connectedcars/test",
"version": "2.0.0",
"description": "Test utilities for Node projects",
"main": "build/dist/src/index.js",
"bin": {
"run-wrapper": "build/dist/bin/run-wrapper.js",
"local-mysql": "build/dist/bin/local-mysql.js",
"cache-migrations": "build/dist/bin/cache-migrations.js",
"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",
"local-mysql": "npm run build:js && build/dist/bin/local-mysql.js",
"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-auto": "./build/dist/bin/checks.js auto --hard-fail",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/connectedcars/node-test/issues"
},
"homepage": "https://github.com/connectedcars/node-test#readme",
"devDependencies": {
"@babel/cli": "7.24.6",
"@babel/core": "7.24.6",
"@babel/plugin-transform-class-properties": "7.24.6",
"@babel/plugin-transform-nullish-coalescing-operator": "7.24.6",
"@babel/plugin-transform-numeric-separator": "7.24.6",
"@babel/plugin-transform-optional-chaining": "7.24.6",
"@babel/preset-env": "7.24.6",
"@babel/preset-typescript": "7.24.6",
"@connectedcars/setup": "^0.23.2",
"@types/deep-equal": "1.0.4",
"@types/jest": "29.5.12",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"axios": "^1.6.5",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.5.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.1.0",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"prettier": "3.2.5",
"typescript": "5.4.5"
},
"dependencies": {
"@types/mysql": "*",
"@types/node": "*",
"@types/sinon": "*",
"deep-equal": "2.2.3",
"mysql": "^2.18.1",
"sinon": "^17.0.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"build/dist"
]
}