-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
73 lines (73 loc) · 1.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "evaporate",
"version": "2.1.4",
"description": "Javascript library for browser to S3 multipart resumable uploads for browsers and with Node FileSystem (fs) Stream Support",
"main": "evaporate.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "ava -v test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git://github.com/TTLabs/EvaporateJS.git"
},
"keywords": [
"aws",
"amazon",
"S3",
"multipart",
"multi-part",
"uploads",
"browser",
"transfer",
"acceleration",
"signature version 4",
"v4",
"electron",
"ReadableFileStream",
"fs",
"stream",
"checksum",
"Content-MD5"
],
"bugs": {
"url": "https://github.com/TTLabs/EvaporateJS/issues"
},
"author": {
"name": "Tom Saffell",
"email": "[email protected]"
},
"license": "BSD 3-Clause",
"homepage": "https://github.com/TTLabs/EvaporateJS",
"devDependencies": {
"ava": "^5.1.0",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "0.3.3",
"file-api": "^0.10.4",
"jsdom": "^9.4.2",
"mime": "1.3.4",
"nyc": "^7.1.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"xmldom": "^0.1.22"
},
"ava": {
"require": [
"babel-register",
"./test/helpers/browser-env.js"
]
},
"nyc": {
"include": ["evaporate.js"]
},
"babel": {
"presets": [
"es2015"
]
}
}