-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "mostly-blob-storages",
"version": "1.1.1",
"description": "Blob storage engines for mostly microservices and api gateway middleware",
"author": {
"name": "mostly",
"email": "[email protected]",
"url": "https://mostlyjs.github.com"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"homepage": "https://github.com/MostlyJS/mostly-blob-storages#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MostlyJS/mostly-blob-storages.git"
},
"bugs": {
"url": "https://github.com/MostlyJS/mostly-blob-storages/issues"
},
"dependencies": {
"async": "^2.5.0",
"concat-stream": "^1.6.0",
"debug": "^2.6.6",
"duplexify": "^3.5.1",
"end-of-stream": "^1.4.0",
"file-type": "^5.2.0",
"lru-cache": "^4.1.1",
"mime-types": "^2.1.16",
"mkdirp": "^0.5.1",
"parseurl": "^1.3.1",
"run-parallel": "^1.1.6",
"s3-download-stream": "^0.0.5",
"s3-stream-upload": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint-if-supported": "^1.0.1",
"eslint-plugin-promise": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0"
}
}