forked from ali-sdk/ali-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ali-oss",
"version": "4.8.0",
"description": "aliyun oss(open storage service) node client",
"main": "lib/client.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha -t 30000 -r thunk-mocha -r should test/*.test.js",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -R dot -t 60000 -r thunk-mocha -r should test/*.test.js",
"jshint": "jshint .",
"autod": "autod",
"build-dist": "node browser-build.js > dist/aliyun-oss-sdk.js && MINIFY=1 node browser-build.js > dist/aliyun-oss-sdk.min.js",
"publish-to-cdn": "node publish.js"
},
"git-pre-hooks": {
"pre-release": "npm run build-dist",
"post-release": [
"npm publish",
"npm run publish-to-cdn"
]
},
"repository": {
"type": "git",
"url": "git://github.com/aliyun/oss-nodejs-sdk.git"
},
"keywords": [
"oss",
"client",
"file",
"aliyun"
],
"author": "dead_horse",
"license": "MIT",
"bugs": {
"url": "https://github.com/aliyun/oss-nodejs-sdk/issues"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/aliyun/oss-nodejs-sdk",
"devDependencies": {
"aliasify": "^2.0.0",
"autod": "^2.6.1",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^6.6.1",
"babelify": "^7.3.0",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.1",
"bluebird": "^3.1.5",
"browserify": "^13.0.1",
"co-fs": "^1.2.0",
"crypto-browserify": "^1.0.9",
"filereader": "^0.10.3",
"git-pre-hooks": "^1.2.0",
"istanbul": "^0.4.3",
"mm": "^2.0.0",
"mocha": "^3.0.0",
"should": "^11.0.0",
"sinon": "^1.17.6",
"thunk-mocha": "^1.0.3",
"uglify-js": "^2.7.1"
},
"dependencies": {
"address": "^1.0.0",
"agentkeepalive": "^2.1.1",
"bowser": "^1.6.0",
"co": "^4.6.0",
"co-defer": "^1.0.0",
"co-gather": "^0.0.1",
"copy-to": "^2.0.1",
"dateformat": "^2.0.0",
"debug": "^2.2.0",
"destroy": "^1.0.4",
"end-or-error": "^1.0.1",
"get-ready": "^1.0.0",
"humanize-ms": "^1.2.0",
"is-type-of": "^1.0.0",
"merge-descriptors": "^1.0.1",
"mime": "^1.3.4",
"platform": "^1.3.1",
"sdk-base": "^2.0.1",
"urllib": "^2.17.1",
"utility": "^1.8.0",
"xml2js": "^0.4.16"
}
}