-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "jsonschema-bigquery",
"version": "7.0.0",
"description": "Convert JSON schema to Google BigQuery schema",
"main": "src/converter.js",
"scripts": {
"ci": "npm run lint && npm run coverage",
"test": "mocha test/unit test/integration",
"coverage": "nyc npm run test",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"lint": "npm run lint:prettier && npm run lint:eslint",
"format": "prettier --write ."
},
"bin": {
"jsbq": "./bin/jsbq"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thedumbterminal/jsonschema-bigquery.git"
},
"keywords": [
"json",
"schema",
"google",
"bigquery",
"convert"
],
"author": {
"name": "thedumbterminal",
"email": "[email protected]",
"url": "http://www.thedumbterminal.co.uk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thedumbterminal/jsonschema-bigquery/issues"
},
"homepage": "https://github.com/thedumbterminal/jsonschema-bigquery#readme",
"devDependencies": {
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^17.10.1",
"eslint-plugin-promise": "^7.0.0",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"prettier": "^3.3.3"
},
"dependencies": {
"@google-cloud/bigquery": "^7.0.0",
"lodash": "^4.17.20",
"log4js": "^6.3.0",
"yargs": "^17.3.1"
},
"nyc": {
"check-coverage": true,
"branches": 88,
"lines": 98,
"functions": 100,
"statements": 97
}
}