-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.62 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.62 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tiny-oss",
"version": "0.5.1",
"description": "A tiny aliyun oss sdk for browser which focus on uploading",
"main": "lib/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"files": [
"dist",
"lib",
"es",
"types",
"vendor"
],
"scripts": {
"clean": "rimraf dist lib es",
"lint": "eslint src test",
"test": "npm run build && npm run serve:test && karma start",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage",
"build": "npm run clean && npm run build:es && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env babel src --out-dir es",
"build:umd": "cross-env NODE_ENV=development webpack",
"build:umd:min": "cross-env NODE_ENV=production webpack",
"bundle:stats": "cross-env NODE_ENV=production webpack --profile --json > stats.json",
"serve": "node test/server.js",
"serve:test": "cross-env AUTO_KILL=true node test/server.js &"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alex1990/tiny-oss.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"aliyun",
"oss",
"sdk"
],
"author": "Alex Chao",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alex1990/tiny-oss/issues"
},
"homepage": "https://github.com/Alex1990/tiny-oss#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"ali-oss": "^6.1.1",
"axios": "^0.21.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"husky": "^2.1.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"koa": "^2.7.0",
"koa-static": "^5.0.0",
"lint-staged": "^8.1.5",
"mkdirp": "^0.5.1",
"mocha": "^6.1.4",
"rimraf": "^2.6.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"base64-js": "^1.3.0",
"md5": "^2.2.1",
"object-assign": "^4.1.1"
}
}