forked from lizheming/drone-wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "sentry-wechat",
"version": "1.0.0",
"description": "Wechat notification service for Sentry.",
"author": "Link <xieaolin@foxmail.com>",
"license": "MIT",
"homepage": "https://github.com/linkdesu/sentry-wechat#readme",
"keywords": [
"sentry",
"webhook",
"wechat",
"node"
],
"bugs": {
"url": "https://github.com/linkdesu/sentry-wechat/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linkdesu/sentry-wechat.git"
},
"main": "index.js",
"scripts": {
"dev": "cross-env nodemon index.js",
"lint": "cross-env eslint index.js",
"test": "cross-env NODE_ENV=testing npm run eslint && nyc ava test && nyc report --reporter=html",
"start": "cross-env NODE_ENV=production node index.js"
},
"nodemonConfig": {
"ignore": [
"test/*"
],
"delay": "1000"
},
"dependencies": {
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"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",
"nodemon": "^1.18.4",
"nyc": "^11.4.1"
}
}