-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
36 lines (36 loc) · 867 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": "simple-file-uploader",
"version": "0.2.0",
"description": "A file uploader written using HTML5 and Node.js. It can upload both to a local directory on the server or to an AWS S3 server.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/merty/simple-file-uploader.git"
},
"keywords": [
"aws",
"file",
"html5",
"node",
"nodejs",
"s3",
"upload"
],
"author": "Mert Yazicioglu",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/merty/simple-file-uploader/issues"
},
"homepage": "https://github.com/merty/simple-file-uploader#readme",
"dependencies": {
"knox": "^0.9.2"
},
"scripts": {
"start": "node index"
}
}