-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "alioss-upload",
"version": "0.0.1",
"description": "一个命令行工具,用于上传静态资源到阿里云oss",
"main": "index.js",
"scripts": {
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
"lint": "eslint .",
"pkgfiles": "egg-bin pkgfiles",
"lint-local": "eslint . --fix"
},
"bin": {
"alioss-upload": "bin/alioss-upload.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/yongbo000/alioss-upload.git"
},
"keywords": [
"aliyun",
"oss",
"cli"
],
"author": "yongbo.hello@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/yongbo000/alioss-upload/issues"
},
"homepage": "https://github.com/yongbo000/alioss-upload#readme",
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.14.0",
"eslint-config-egg": "^6.0.0",
"sinon": "^4.4.3",
"egg-bin": "^4.3.7",
"egg-ci": "^1.8.0"
},
"dependencies": {
"ali-oss": "^4.13.0",
"cli-color": "^1.2.0",
"co": "^4.6.0",
"debug": "^3.1.0",
"globby": "^8.0.1",
"yargs": "^11.0.0"
},
"files": [
"bin",
"lib"
]
}