-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 811 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 811 Bytes
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
{
"name": "intimidate",
"version": "1.3.0",
"description": "Upload files to s3 with exponential backoff",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/*",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/jergason/intimidate.git"
},
"engines": {
"node": ">=2"
},
"keywords": [
"s3",
"uploads",
"retries",
"backoff"
],
"author": "Jamison Dance <jergason@gmail.com> (http://jamisondance.com)",
"license": "BSD",
"dependencies": {
"knox": "~0.9.1",
"mime": "^1.3.6",
"waitress": "~0.1.5"
},
"devDependencies": {
"eslint": "4.7.2",
"eslint-config-airbnb-base": "12.0.0",
"eslint-config-prettier": "2.6.0",
"eslint-plugin-import": "2.7.0",
"mocha": "~3.5.3"
}
}