This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
forked from probot/smee-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.55 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
55
56
57
58
59
60
61
62
63
{
"name": "smee-client",
"version": "1.2.4",
"description": "Client to proxy webhooks to local host",
"main": "src/client.ts",
"bin": {
"smee": "./dist/smee.js"
},
"files": [
"src"
],
"scripts": {
"test": "jest --coverage",
"build": "eslint src && utils/gen_version && tsc -p tsconfig.json"
},
"repository": "github:distributed-system-analysis/smee-client",
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^10.0.0",
"eventsource": "^2.0.0",
"superagent": "^8.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@types/eventsource": "^1.1.8",
"@types/jest": "^29.0.0",
"@types/nock": "^10.0.0",
"@types/superagent": "^4.1.15",
"@types/validator": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.0.0",
"connect-sse": "^1.2.0",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"flush-promises": "^1.0.2",
"jest": "^29.0.0",
"nock": "^13.0.0",
"supertest": "^6.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.4"
},
"jest": {
"clearMocks": true,
"collectCoverage": false,
"coverageProvider": "v8",
"coverageReporters": [
"text",
"cobertura"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
]
}
}