forked from probot/smee-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.13 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
{
"name": "smee-client",
"version": "1.2.2",
"description": "Client to proxy webhooks to local host",
"main": "index.js",
"bin": {
"smee": "./bin/smee.js"
},
"files": [
"index.js",
"index.d.ts",
"bin",
"lib"
],
"scripts": {
"test": "jest --coverage && standard",
"build": "tsc -p tsconfig.json"
},
"repository": "github:probot/smee-client",
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^2.19.0",
"eventsource": "^1.0.7",
"morgan": "^1.9.1",
"superagent": "^5.0.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@types/eventsource": "^1.1.0",
"@types/jest": "^24.0.11",
"@types/nock": "^9.3.1",
"@types/superagent": "^4.1.1",
"@types/validator": "^10.11.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",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"preset": "ts-jest"
}
}