forked from nathanpeck/s3-upload-stream
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "oss-upload-stream",
"description": "Writeable stream for uploading content of unknown size to Aliyun OSS via the multipart API.",
"author": {
"name": "Meteor",
"email": "liuxingmatt@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/meteormatt/oss-upload-stream.git"
},
"devDependencies": {
"aliyun-sdk": "~1.7.6",
"chai": "3.4.1",
"coveralls": "^2.11.4",
"istanbul": "^0.4.1",
"mocha": "2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"semantic-release": "^4.3.5"
},
"dependencies": {},
"keywords": [
"aliyun",
"oss",
"upload",
"pipe",
"stream"
],
"license": "MPL-2.0",
"readmeFilename": "README.md",
"main": "./lib/oss-upload-stream.js",
"engines": {
"node": ">=0.10.x"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec tests && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}