-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "chunkyjs",
"version": "0.2.6",
"description": "An async upload/download nodejs library leveraging express.js and socket.io. Provides standard, chunked, and udp style transfers.",
"main": "chunky.js",
"scripts": {
"test": "grunt",
"postversion": "git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Supernomad/chunky.git"
},
"keywords": [
"transfer",
"upload",
"download",
"chunked",
"file",
"multi-part",
"folder"
],
"author": {
"name": "supernomad <Christian Saide>",
"email": "[email protected]"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Supernomad/chunky/issues"
},
"homepage": "https://github.com/Supernomad/chunky",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"mocha": "~2.2.5",
"istanbul": "~0.3.15",
"grunt": "~0.4.5",
"grunt-mocha-istanbul": "~2.4.0",
"grunt-coveralls": "~1.0.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-mkdir": "~0.1.2",
"grunt-codacy": "~1.1.0",
"should": "~7.0.1"
},
"dependencies": {
"node-cache": "~3.0.0",
"express": "~4.13.0",
"body-parser": "~1.13.1",
"multer": "~0.1.8",
"async": "~1.2.1"
},
"peerDependencies": {
"express": "~4.13.0"
}
}