forked from ali-sdk/ali-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.08 KB
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
{
"name": "ali-oss",
"version": "4.1.6",
"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": "browserify browser.js -t babelify -s OSS > dist/aliyun-oss-sdk.js && uglifyjs dist/aliyun-oss-sdk.js -c > 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": {
"autod": "^2.4.2",
"babel-runtime": "^6.6.1",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"bluebird": "^3.1.5",
"browserify": "^13.0.0",
"co-fs": "^1.2.0",
"filereader": "^0.10.3",
"git-pre-hooks": "^1.2.0",
"istanbul": "^0.4.2",
"mm": "^1.3.5",
"mocha": "^2.4.2",
"should": "^8.2.0",
"thunk-mocha": "^1.0.2",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"address": "~1.0.0",
"agentkeepalive": "~2.0.3",
"co": "~4.6.0",
"co-defer": "~1.0.0",
"copy-to": "~2.0.1",
"debug": "~2.2.0",
"destroy": "~1.0.4",
"end-or-error": "~1.0.1",
"get-ready": "~1.0.0",
"humanize-ms": "~1.0.1",
"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.8.0",
"utility": "~1.6.0",
"xml2js": "~0.4.16"
}
}