-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 1004 Bytes
/
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": "gcs-signed-urls",
"version": "1.0.4",
"description":
"Allow uploads directly from the browser to Google Cloud Storage while controlling access with Nodejs and signed urls.",
"main": "src/cloudStorage.js",
"scripts": {
"test": "mocha src/",
"start": "node example/app"
},
"repository": {
"type": "git",
"url": "https://github.com/sfarthin/nodejs-google-cloud-storage.git"
},
"keywords": ["google", "cloud", "storage", "nodejs", "file"],
"author": "Steve Farthing",
"license": "MIT",
"bugs": {
"url": "https://github.com/sfarthin/nodejs-google-cloud-storage/issues"
},
"homepage": "https://github.com/sfarthin/nodejs-google-cloud-storage",
"dependencies": {
"ejs": "^2.5.7",
"express": "^4.5.1",
"jade": "^1.3.1",
"mime": "^1.2.11",
"moment": "^2.7.0",
"quinncia-restler": "^3.4.1",
"underscore": "^1.6.0"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.20.1",
"underscore": "^1.6.0"
}
}