-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "smee-client",
"version": "0.0.0-development",
"description": "Client to proxy webhooks to localhost",
"main": "index.js",
"bin": {
"smee": "./bin/smee.js"
},
"files": [
"index.js",
"index.d.ts",
"bin"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "prettier --check \"index.ts\" \"test/**/*.ts\" package.json tsconfig.json --end-of-line auto",
"lint:fix": "prettier --write \"index.ts\" \"test/**/*.ts\" package.json tsconfig.json --end-of-line auto",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest --ui --coverage"
},
"repository": "github:probot/smee-client",
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^12.0.0",
"eventsource": "^2.0.2",
"validator": "^13.11.0"
},
"devDependencies": {
"@octokit/tsconfig": "^3.0.0",
"@types/eventsource": "^1.1.15",
"@types/node": "^20.0.0",
"@types/validator": "^13.11.6",
"@vitest/coverage-v8": "^2.0.0",
"fastify": "^5.0.0",
"prettier": "^3.1.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}