-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.04 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
{
"name": "ding-bot-cli",
"version": "1.1.7",
"description": "DingTalk robot messages sender",
"main": "only-cli.js",
"scripts": {
"build": "babel src --out-dir lib"
},
"engines": {
"node": ">8.0.0"
},
"bin": {
"dingding": "lib/index.js"
},
"keywords": [
"DingTalk",
"dingding",
"dingtalk-robot",
"dingding-bot",
"dingding-alert"
],
"babel": {
"only": [
"./src"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8"
},
"modules": "commonjs",
"useBuiltIns": "entry",
"corejs": 3
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/qiqiboy/ding-bot-cli.git"
},
"author": "qiqiboy",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5"
},
"dependencies": {
"axios": "^0.23.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"ora": "^3.4.0"
}
}