forked from bankyadam/not-so-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "not-so-bigquery",
"version": "1.0.0",
"description": "An emulator for the Google BigQuery, that can be run locally, backed by PostgreSQL.",
"main": "src/init.js",
"scripts": {
"start": "node src/init",
"start:dev": "npx nodemon npm run start",
"test:unit": "mocha 'src/**/*.spec.js' 'test/unit/**/*.spec.js'",
"test:e2e": "mocha 'test/e2e/**/*.spec.js'",
"style": "eslint --ext .js src test"
},
"keywords": [],
"author": "Adam Banky <banky.adam@gmail.com>",
"license": "MIT",
"dependencies": {
"@google-cloud/bigquery": "5.7.0",
"chevrotain": "9.0.2",
"etag": "1.8.1",
"express": "4.17.1",
"express-async-router": "0.1.15",
"hex2dec": "1.1.2",
"lodash": "4.17.21",
"pg": "8.6.0",
"sprintf-js": "1.1.2",
"xregexp": "5.0.2"
},
"devDependencies": {
"chai": "4.3.4",
"chai-string": "1.5.0",
"dotenv": "10.0.0",
"eslint": "7.31.0",
"eslint-config-emarsys": "5.1.0",
"eslint-plugin-require-path-exists": "1.1.9",
"jsdom": "16.6.0",
"mocha": "9.0.3",
"moment-timezone": "0.5.33",
"nodemon": "2.0.12",
"sinon": "11.1.1",
"sinon-chai": "3.7.0"
}
}