-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.68 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "check-group",
"version": "1.0.1",
"description": "A app to group checks based on sub-projects.",
"author": "Tianhao Zhou <tianhaoz@umich.edu>",
"license": "ISC",
"homepage": "https://github.com/tianhaoz95/check-group",
"bugs": "https://github.com/tianhaoz95/check-group/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": "https://github.com/tianhaoz95/check-group",
"scripts": {
"build": "tsc",
"build:dev-docs": "typedoc",
"start": "probot run ./lib/index.js",
"start:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"start:docs": "docsify serve docs",
"start:dev-docs": "http-server tmp/dev-docs",
"test": "LOG_LEVEL=fatal jest",
"test:debug": "jest",
"remark": "remark .",
"remark:format": "remark . -o",
"prettier": "prettier --check .",
"prettier:format": "prettier --write .",
"eslint": "eslint src test --ext .ts",
"eslint:format": "eslint --fix src test --ext .ts",
"format": "npm run prettier:format && npm run eslint:format",
"vercel-dev": "vercel dev",
"deploy:dev-docs": "gh-pages -d tmp/dev-docs -r https://tianhaoz95:$GITHUB_TOKEN@github.com/GitHubSuperpower/check-group-dev-doc.git -u \"Tianhao Zhou <tianhaoz@umich.edu>\""
},
"dependencies": {
"@octokit/rest": "^20.0.2",
"@octokit/types": "^12.5.0",
"@octokit/webhooks": "^13.0.1",
"@sentry/node": "^7.98.0",
"@sentry/tracing": "^7.99.0",
"@types/minimatch": "^5.1.2",
"@types/prettyjson": "0.0.33",
"dotenv": "^16.4.5",
"http-status-codes": "^2.3.0",
"minimatch": "^7.4.3",
"prettier": "^3.2.4",
"prettyjson": "^1.2.5",
"probot": "^12.3.3",
"vercel": "^28.20.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/nock": "^11.1.0",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^7.5.0",
"all-contributors-cli": "^6.26.1",
"docsify-cli": "^4.4.4",
"eslint": "^8.57.0",
"eslint-plugin-security": "^2.1.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript": "^0.14.0",
"gh-pages": "^6.1.1",
"http-server": "^14.1.1",
"jest": "^27.5.1",
"nock": "^13.5.4",
"nodemon": "^3.1.0",
"remark": "^15.0.1",
"remark-cli": "^12.0.0",
"remark-lint": "^10.0.0",
"remark-preset-lint-recommended": "^6.1.3",
"smee-client": "^2.0.0",
"ts-jest": "^27.1.4",
"ts-mockito": "^2.6.1",
"typedoc": "^0.26.2",
"typescript": "^4.8.4"
},
"jest": {
"testEnvironment": "node"
}
}