-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "auth-routes",
"version": "0.0.0-development",
"description": "Helpful authentication routes for Node.js GitHub integrations",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"lint": "prettier --check 'src/**/*.ts' 'tests/**' '*.yml' '*.md'",
"lint:fix": "prettier --write 'src/**/*.ts' 'tests/**' '*.yml' '*.md'",
"test": "vitest run --coverage"
},
"keywords": [
"github",
"github app",
"authentication",
"express"
],
"author": "Jason Etcovitch",
"repository": "github:probot/auth-routes",
"license": "ISC",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"dependencies": {
"@octokit/rest": "^20.0.0"
},
"devDependencies": {
"@octokit/tsconfig": "^4.0.0",
"@types/express": "^4.16.0",
"@types/node": "^20.0.0",
"@types/supertest": "^2.0.7",
"@vitest/coverage-v8": "^2.1.3",
"express": "^4.20.0",
"nock": "^14.0.0-beta.19",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"supertest": "^7.0.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true,
"access": "public"
}
}