-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "skipper-gcs",
"version": "0.3.1",
"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/onlinemad/skipper-gcs.git"
},
"keywords": [
"skipper",
"google",
"skipper-gcs",
"gcs",
"upload"
],
"author": "Ian Wu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/onlinemad/skipper-gcs.git/issues"
},
"homepage": "https://github.com/onlinemad/skipper-gcs.git",
"devDependencies": {
"skipper-adapter-tests": "~1.5.3"
},
"dependencies": {
"concat-stream": "^1.5.0",
"debug": "^2.1.0",
"gcloud": "^0.23.0",
"lodash": "^3.10.1",
"mime": "^1.3.4"
}
}