-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
{
"name": "scf-cli",
"version": "1.0.8",
"main": "./bin/index.js",
"author": "louiswu",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"child_process": "^1.0.2",
"cli-spinner": "^0.2.8",
"colors": "^1.3.0",
"commander": "^2.15.1",
"figlet": "^1.2.0",
"inquirer": "^6.0.0",
"koa": "^2.5.1",
"koa-body": "^4.0.4",
"lodash": "^4.17.10",
"memeye": "^1.0.3",
"moment": "^2.22.2",
"ora": "^2.1.0",
"supervisor": "^0.12.0",
"tty-table": "^2.6.8"
},
"scripts": {
"dev": "supervisor ./bootstrap.js",
"cover": "istanbul cover _mocha -- test/*.test.js -R spec",
"test": "mocha test/*.js",
"release": "standard-version",
"pub": "git push --follow-tags origin master && npm publish"
},
"bin": {
"scf": "./bin/index.js"
},
"engines": {
"node": ">= 8.1.4"
},
"description": "本地测试运行云函数的小工具",
"devDependencies": {
"assert": "^1.4.1",
"bdd-stdin": "^0.2.0",
"chai": "^4.1.2",
"command-line-test": "^1.0.10",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.6.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^5.2.0",
"request": "^2.88.0",
"request-promise-any": "^1.0.5",
"should": "^13.2.1",
"standard-version": "^4.4.0",
"supertest": "^3.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"serverless cloud function",
"cli",
"debug",
"Tencent Cloud"
]
}