-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.09 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
{
"name": "zoq",
"displayName": "Zoq",
"description": "Convert Zod to BigQuery Schema",
"version": "0.0.7",
"license": "Apache-2",
"author": "minodisk",
"repository": {
"type": "git",
"url": "git+https://github.com/minodisk/zoq.git"
},
"bugs": {
"url": "https://github.com/minodisk/zoq/issues"
},
"homepage": "https://github.com/minodisk/zoq#readme",
"module": "./esm/index.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "run-p build:*",
"build:esm": "esbuild ./src/index.ts --outfile=./esm/index.js --format=esm --platform=node",
"build:cjs": "esbuild ./src/index.ts --outfile=./lib/index.js --format=cjs --platform=node",
"build:dts": "tsc --declaration --emitDeclarationOnly",
"build-watch": "npm run build:ts -- --watch",
"validation": "run-p check test-coverage",
"check": "run-p check:*",
"check:tsc": "tsc --noEmit",
"check:format": "npm run format -- --check",
"check:lint": "npm run lint",
"test": "jest --silent=false",
"test-coverage": "npm run test -- --coverage --coverageDirectory ./coverage/core",
"test-watch": "npm run test -- --watchAll",
"fix": "run-p fix:*",
"fix:lint": "npm run lint -- --fix",
"fix:format": "npm run format -- --write",
"lint": "eslint \"./src/**/*.ts\"",
"format": "prettier src",
"prepare": "npm run build"
},
"devDependencies": {
"@google-cloud/bigquery": "^6.0.1",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"cpx": "^1.5.0",
"esbuild": "^0.14.51",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-strict-dependencies": "^1.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"glob": "^8.0.3",
"jest": "^28.1.3",
"mkdirp": "^1.0.4",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"zod": "^3.17.10"
}
}