This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "kratos-server",
"version": "1.5.0",
"description": "Collect and stream chunked files over http and stream them into Google Cloud Storage",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Christian Froehlingsdorf <[email protected]>",
"license": "SEE LICENSE IN ./LICENSE",
"private": false,
"scripts": {
"tsv": "tsc -v",
"prepublishOnly": "yarn build",
"build": "rm -rf dist/ && tsc -p tsconfig.json",
"_start": "DEBUG=service:* node dist/example/index.js",
"start": "yarn build && yarn _start",
"start:bin": "yarn build && node bin/kratos-server.js -l ./baseConfig.js",
"start:hidden": "yarn build && node bin/kratos-server.js -l ./hidden.js",
"lint": "tslint -c tslint.json -p tsconfig.json",
"fix": "tslint -c tslint.json -p tsconfig.json --fix",
"yarn:openssl": "LDFLAGS='-L/usr/local/opt/openssl/lib' CPPFLAGS='-I/usr/local/opt/openssl/include' yarn",
"test:only": "TS_NODE_PROJECT='tsconfig.test.json' _mocha",
"test": "yarn build && yarn test:only",
"test:log": "yarn build && DEBUG=service:* TS_NODE_PROJECT='tsconfig.test.json' _mocha"
},
"keywords": [
"http",
"gcs",
"google",
"cloud",
"storage",
"upload",
"download",
"file",
"large",
"chunk",
"stream"
],
"dependencies": {
"@google-cloud/storage": "^2.5.0",
"bluebird": "^3.5.5",
"body-parser": "~1.19.0",
"commander": "~2.20.0",
"cors": "~2.8.5",
"debug": "~4.1.1",
"express": "~4.17.1",
"prom-client": "^11.5.2",
"request": "^2.88.0"
},
"devDependencies": {
"@types/bluebird": "~3.5.27",
"@types/cors": "~2.8.5",
"@types/debug": "~4.1.4",
"@types/express": "~4.17.0",
"@types/mocha": "^5.2.7",
"@types/node": "~12.0.10",
"mocha": "^6.1.4",
"tslint": "~5.18.0",
"typescript": "~3.5.2"
},
"preferGlobal": true,
"bin": {
"kratos-server": "bin/kratos-server.js"
}
}