-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "magic-mirror",
"version": "1.3.2",
"description": "GitHub App that syncs upstream repositories with forks using PRs",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npx tsc",
"lint": "eslint src --ext .ts",
"dev": "npm run build && touch magic-mirror.db && concurrently npm:syncer npm:web -n syncer,web -c green,blue",
"syncer": "node ./build/scripts/start-syncer.js",
"web": "node ./build/scripts/start-web.js",
"test": "jest --runInBand ./src"
},
"author": "Red Hat",
"license": "GPL-3.0-or-later",
"dependencies": {
"@octokit/auth-app": "^6.0.3",
"@octokit/openapi-types": "^19.1.0",
"@octokit/rest": "^18.12.0",
"@octokit/webhooks-types": "^7.3.1",
"probot": "^12.3.3",
"simple-git": "^3.22.0",
"sqlite3": "^5.1.7",
"tmp": "^0.2.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.11",
"@types/sqlite3": "^3.1.11",
"@types/supertest": "^6.0.2",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"nock": "^13.5.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"lines": 90
}
}
}
}