forked from octokit/oauth-app.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.5 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@octokit/oauth-app",
"version": "0.0.0-development",
"description": "GitHub OAuth toolset for Node.js",
"scripts": {
"build": "pika build",
"lint": "prettier --check '{src,test}/**/*' README.md package.json",
"lint:fix": "prettier --write '{src,test}/**/*' README.md package.json",
"pretest": "npm run -s lint",
"test": "jest --coverage",
"test:typescript": "npx tsc --noEmit --declaration --noUnusedLocals test/typescript-validate.ts"
},
"repository": "github:octokit/oauth-app.js",
"keywords": [
"github",
"api",
"sdk",
"toolkit"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"@octokit/auth-oauth-app": "^4.0.0",
"@octokit/auth-oauth-user": "^1.2.3",
"@octokit/auth-unauthenticated": "^2.0.0",
"@octokit/core": "^3.3.2",
"@octokit/oauth-authorization-url": "^4.2.1",
"@octokit/oauth-methods": "^1.2.2",
"fromentries": "^1.3.1",
"i": "^0.3.6",
"npm": "^7.14.0",
"universal-user-agent": "^6.0.0"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.4",
"@types/node-fetch": "^2.5.4",
"fetch-mock": "^9.0.0",
"jest": "^27.0.0",
"nock": "^13.0.0",
"node-fetch": "^2.6.0",
"prettier": "2.3.0",
"semantic-release": "^17.0.3",
"semantic-release-plugin-update-version-in-files": "^1.0.0",
"ts-jest": "^27.0.0-next.12",
"typescript": "^4.0.2"
},
"jest": {
"preset": "ts-jest",
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "./pkg"
}
],
[
"semantic-release-plugin-update-version-in-files",
{
"files": [
"pkg/dist-web/*",
"pkg/dist-node/*",
"pkg/*/version.*"
]
}
]
]
},
"publishConfig": {
"access": "public"
},
"renovate": {
"extends": [
"github>octokit/.github"
]
}
}