-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "@firebaseextensions/fs-bq-schema-views",
"version": "0.1.6",
"description": "Generate strongly-typed BigQuery Views based on raw JSON",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "github.com/firebase/extensions.git",
"directory": "firestore-bigquery-export/scripts/gen-schema-view"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf ./lib",
"compile": "tsc && cp -r src/test/fixtures lib/test",
"gen-schema-views": "node ./lib/index.js",
"prepare": "npm run build",
"test": "jest"
},
"files": [
"lib",
"lib/index.js",
"lib/logs.js",
"lib/snapshot.js",
"lib/schema-loader-utils.js",
"lib/schema.js",
"lib/udf.js"
],
"bin": {
"fs-bq-schema-views": "./lib/index.js"
},
"author": "Jan Wyszynski <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@firebaseextensions/firestore-bigquery-change-tracker": "^1.1.3",
"@google-cloud/bigquery": "^2.1.0",
"commander": "5.0.0",
"firebase-admin": "^7.1.1",
"firebase-functions": "^2.2.1",
"fs-find": "^0.4.0",
"generate-schema": "^2.6.0",
"glob": "7.1.5",
"inquirer": "^6.4.0",
"sql-formatter": "^2.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"jest": "^24.9.0",
"nyc": "^14.0.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.1.0",
"ts-node": "^7.0.1",
"typescript": "^3.5.2",
"@types/chai": "^4.1.6",
"@types/jest": "^24.9.1"
}
}