forked from onlinemad/skipper-gcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "skipper-gclouds",
"version": "1.0.2",
"description": "A skipper adapter to allow uploading files to Google Cloud Storage",
"main": "index.js",
"scripts": {
"test": "node -e \"require('skipper-adapter-tests')({mocha: { timeout: 360000 }, module: require('./'), bucket:process.env.BUCKET || 'skipper-adapter-tests', projectId: process.env.PROJECTID, keyFilename: process.env.KEYFILENAME, email: process.env.EMAIL});\""
},
"repository": {
"type": "git",
"url": "https://github.com/malpercio/skipper-gclouds.git"
},
"keywords": [
"skipper",
"google",
"skipper-gclouds",
"gcs",
"upload"
],
"author": "Daniel González Espinoza",
"contributors": [
"Ian Wu <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/malpercio/skipper-gclouds.git/issues"
},
"homepage": "https://github.com/malpercio/skipper-gclouds.git",
"devDependencies": {
"bithound": "^1.7.0",
"eslint": "^4.3.0",
"skipper-adapter-tests": "^1.5.8"
},
"dependencies": {
"@google-cloud/storage": "^1.2.1",
"concat-stream": "^1.6.0",
"lodash": "^4.17.4",
"mime": "^1.3.6"
}
}