-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 815 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 815 Bytes
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
{
"name": "@pozible/signed-upload",
"version": "1.0.4",
"description": "Bootstrapped file upload.",
"main": "index.js",
"types": "index.d.ts",
"repository": "git@github.com:pozi-team/signed-upload.git",
"author": "spondbob <spondbob@eamca.com>",
"keywords": [
"signed urls",
"cloud storage"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node-fetch": "^2.5.4",
"@types/uuid": "^3.4.7",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@google-cloud/storage": "^4.3.0",
"node-fetch": "^2.6.0",
"uuid": "^3.4.0"
},
"scripts": {
"build": "tsc --declaration",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
}
}