-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "big-waffle",
"version": "0.1.0",
"description": "A DDF Service that uses an SQL database",
"license": "CC-BY-4.0",
"repository": "github:Gapminder/big-waffle",
"bugs": "https://github.com/Gapminder/big-waffle/issues",
"engines": {
"node": ">=10.15.1"
},
"scripts": {
"start": "node src/server.js",
"test-cli": "mocha -s 4000 -R list test/cli.js",
"test-service": "LOG_LEVEL=warn DB_CONNECTION_TIMEOUT=15 mocha -s 1000 -R list test/service.js"
},
"dependencies": {
"@google-cloud/logging-bunyan": "^2.0.2",
"@google-cloud/storage": "^4.1.3",
"argparse": "^1.0.10",
"basic-auth": "^2.0.1",
"bunyan": "^1.8.12",
"csv-parse": "^4.4.1",
"dotenv": "^8.2.0",
"firstline": "^2.0.2",
"jsonfile": "^5.0.0",
"koa": "^2.11.0",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.11",
"mariadb": "^2.1.4",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"npm": "^6.13.4",
"tmp": "^0.1.0",
"toobusy-js": "^0.5.1",
"urlon": "^2.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-like": "^1.1.1",
"chai-things": "^0.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2",
"supertest": "^4.0.2"
}
}