-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 845 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
37
38
39
{
"name": "s3-deleter",
"version": "0.1.2",
"description": "A writable stream that deletes files from S3 via knox",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/drob/s3-deleter.git"
},
"author": "Dan Robinson <[email protected]>",
"license": "MIT",
"dependencies": {
"async": ">=0.2 < 1"
},
"peerDependencies": {
"knox": ">=0.5 < 1"
},
"devDependencies": {
"knox": "^0.8.9",
"mocha": "^1.17.1",
"s3-lister": "^0.1.0"
},
"scripts": {
"prepublish": "coffee -o lib -c src/index.coffee",
"test": "mocha test/test.coffee"
},
"bugs": {
"url": "https://github.com/drob/s3-deleter/issues"
},
"homepage": "https://github.com/drob/s3-deleter",
"directories": {
"test": "test"
},
"keywords": [
"s3",
"delete",
"stream"
]
}