-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
87 lines (87 loc) · 2.62 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
{
"name": "qingstor-sdk",
"version": "3.1.4",
"description": "Official QingStor SDK for JavaScript",
"keywords": [
"object storage",
"qingstor",
"sdk"
],
"bugs": {
"url": "https://github.com/yunify/qingstor-sdk-js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/yunify/qingstor-sdk-js"
},
"license": "Apache-2.0",
"author": "Yunify SDK Group <[email protected]>",
"files": [
"dist/**/*.js",
"src",
"lib/**/*.js"
],
"main": "./lib/index.js",
"browser": {
"./src/config/node": "./src/config/browser"
},
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"babel": "babel src -d lib",
"cucumber": "cucumber-js --require-module @babel/register --require 'scenarios/tests/*.js' 'scenarios/features/*.feature'",
"dist": "gulp compress",
"docs": "documentation build src/qingstor/*.js -f md -o docs/api_specification.md",
"eslint": "./node_modules/.bin/eslint src/**/*.js src/*.js ./index.js --fix",
"format": "./node_modules/.bin/prettier --write 'src/**/*.js' 'test/**/*.js' 'scenarios/tests/*.js' './docs/**/*.js' ./index.js",
"generate": "snips -f='./specs/qingstor/2016-01-06/swagger/api_v2.0.json' -t='./template' -o='./src/qingstor'",
"postgenerate": "rm ./src/qingstor/object.js && npm run format && npm run eslint",
"jest": "jest --collect-coverage src",
"test": "mocha --require @babel/register -t 10000"
},
"dependencies": {
"axios": "^0.21.1",
"axios-miniprogram-adapter": "^0.2.4",
"crypto-js": "^3.1.8",
"js-yaml": "^3.13.1",
"loglevel": "^1.6.1",
"urlparse": "^0.0.1",
"querystring": "^0.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"chai": "^3.5.0",
"cors": "^2.8.5",
"cucumber": "^6.0.2",
"documentation": "^12.1.3",
"eslint": "^6.5.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-exec": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-terser": "^1.2.0",
"jest": "^24.9.0",
"mocha": "^4.1.0",
"prettier": "^2.2.1",
"webpack": "4.41.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.9"
},
"engines": {
"node": ">=10"
}
}