forked from ecomfe/baidubce-sdk
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
77 lines (77 loc) · 2.1 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
{
"name": "@baiducloud/sdk",
"version": "1.0.3-beta.4",
"description": "Baidu Cloud Engine JavaScript SDK",
"main": "./index.js",
"browser": {
"fs": false,
"index.js": "./dist/baidubce-sdk.bundle.js"
},
"files": [
"dist/",
"src/",
"types/",
"index.js",
"package.json",
"CHANGELOG.md",
"README.md"
],
"directories": {
"test": "__tests__"
},
"scripts": {
"version": "node scripts/version.js",
"build": "node scripts/build.js",
"pack": "rm -rf dist/ && mkdir dist && browserify index.js -s baidubce.sdk -o dist/baidubce-sdk.bundle.js && uglifyjs dist/baidubce-sdk.bundle.js --compress --mangle -o dist/baidubce-sdk.bundle.min.js",
"docs": "cd example && npm run start",
"publish:bos": "node scripts/publish_to_bos.js",
"test": "jest",
"test:legacy": "./test/run-all.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/baidubce/bce-sdk-js.git"
},
"authors": [
"leeight <[email protected]>",
"木休大人 <[email protected]>",
"yangwei <[email protected]>",
"lurunze <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@nodelib/fs.walk": "^2.0.0",
"async": "^3.2.5",
"dayjs": "^1.11.10",
"debug": "^3.1.0",
"filesize": "^10.1.0",
"lodash": "^4.17.21",
"process": "^0.11.10",
"q": "^1.5.1",
"underscore": "^1.9.1",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-syntax-optional-chaining-assign": "^7.24.7",
"@babel/plugin-transform-async-to-generator": "^7.23.3",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
"@babel/preset-env": "^7.24.0",
"@types/async": "^3.2.24",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"babelify": "^10.0.0",
"browserify": "10.2.6",
"chalk": "^4.1.2",
"coveralls": "^3.0.2",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"jest": "^29.7.0",
"mocha": "^5.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"uglify-js": "^3.17.4"
}
}