-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "dingtalk-robot-sender",
"version": "1.2.0",
"description": "钉钉机器人消息推送",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/_mocha",
"_rm": "rm -rf ./coverage",
"cov": "node --harmony node_modules/.bin/istanbul cover --report none --print none --include-pid ./node_modules/.bin/_mocha -- \"test/**/*.test.js\" --harmony --reporter dot",
"report": "node --harmony node_modules/.bin/istanbul report --root ./coverage text-summary json lcov",
"ci": "npm run _rm && npm run cov && npm run report && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x-cold/dingtalk-robot.git"
},
"files": [
"index.js",
"lib",
"index.d.ts"
],
"keywords": [
"dingtalk",
"robot"
],
"author": "xcold <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/x-cold/dingtalk-robot/issues"
},
"homepage": "https://github.com/x-cold/dingtalk-robot#readme",
"dependencies": {
"axios": "^1.6.4"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"devDependencies": {
"codecov": "^3.0.0",
"hapi": "^17.5.1",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"power-assert": "^1.4.4",
"should": "^11.2.1",
"supertest": "^3.0.0"
},
"types": "index.d.ts"
}