forked from thedumbterminal/jsonschema-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "jsonschema-bigquery",
"version": "3.0.0",
"description": "Convert JSON schema to Google BigQuery schema",
"main": "src/converter.js",
"scripts": {
"ci": "npm run lint && npm test",
"test": "mocha test/unit test/integration",
"lint": "eslint ."
},
"bin": {
"jsbq": "./bin/jsbq"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thedumbterminal/jsonschema-bigquery.git"
},
"keywords": [
"json",
"schema",
"google",
"bigquery"
],
"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": "^5.16.0",
"mocha": "^5.2.0"
},
"dependencies": {
"@google-cloud/bigquery": "^1.3.0",
"lodash": "^4.17.11",
"yargs": "^12.0.2"
}
}