forked from probot/smee-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 956 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
41
42
43
44
{
"name": "smee-client",
"version": "1.1.0",
"description": "Client to proxy webhooks to local host",
"main": "index.js",
"bin": {
"smee": "./bin/smee.js"
},
"scripts": {
"test": "jest --coverage && standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/probot/smee.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/probot/smee/issues"
},
"homepage": "https://github.com/probot/smee#readme",
"dependencies": {
"commander": "^2.19.0",
"eventsource": "^1.0.7",
"morgan": "^1.9.1",
"superagent": "^5.0.2",
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.5.0",
"connect-sse": "^1.2.0",
"jest": "^24.5.0",
"nock": "^10.0.6",
"standard": "^12.0.1",
"supertest": "^4.0.2"
},
"standard": {
"env": [
"jest"
]
}
}