-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.14 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
{
"name": "node-glacier-uploader",
"version": "0.6.2",
"description": "Simple multipart uploader for amazon glacier",
"main": "lib/uploader.js",
"keywords": [
"aws",
"glacier",
"aws-sdk",
"amazon"
],
"preferGlobal": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dmitry Chirkin <dmitry.chirkin@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:josser/node-glacier-uploader.git"
},
"dependencies": {
"async.queue": "^0.5.2",
"aws-sdk": "^2.1002.0",
"commander": "^6.2.1",
"debug": "^4.3.2",
"progress": "^2.0.3"
},
"bin": {
"glacier": "./bin/upload.js"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1"
},
"eslintConfig": {
"extends": [
"airbnb"
],
"env": {
"node": true,
"es6": true
},
"rules": {
"max-len": [
"error",
120
]
}
}
}