-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1007 Bytes
/
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
{
"name": "drone-wechat",
"version": "1.1.7",
"description": "drone wechat notification plugin",
"main": "index.js",
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-cov": "nyc ava test.js && nyc report --reporter=lcov --reporter=text-lcov",
"eslint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lizheming/drone-wechat.git"
},
"keywords": [
"drone",
"plugin",
"wechat",
"node"
],
"author": "lizheming <i@imnerd.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lizheming/drone-wechat/issues"
},
"homepage": "https://github.com/lizheming/drone-wechat#readme",
"dependencies": {
"coveralls": "^3.0.2",
"drone-render": "^1.0.4",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint": "^4.14.0",
"eslint-config-think": "^1.0.2",
"mock-require": "^2.0.2",
"nyc": "^11.4.1"
}
}