forked from octokit/auth-app.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.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
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
{
"name": "@octokit/auth-app",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-development",
"description": "GitHub App authentication for JavaScript",
"scripts": {
"build": "pika build",
"lint": "prettier --check '{src,test}/**/*.{ts,md}' README.md *.json",
"lint:fix": "prettier --write '{src,test}/**/*.{ts,md}' README.md *.json",
"pretest": "npm run -s lint",
"test": "jest --coverage",
"semantic-release": "semantic-release"
},
"repository": "https://github.com/octokit/auth-app.js",
"keywords": [
"github",
"octokit",
"authentication",
"api"
],
"author": "Gregor Martynus (https://github.com/gr2m)",
"license": "MIT",
"bugs": {
"url": "https://github.com/octokit/auth-app.js/issues"
},
"homepage": "https://github.com/octokit/auth-app.js#readme",
"dependencies": {
"@octokit/request": "^5.3.0",
"@octokit/request-error": "^2.0.0",
"@octokit/types": "^5.0.0",
"@types/lru-cache": "^5.1.0",
"lru-cache": "^6.0.0",
"universal-github-app-jwt": "^1.0.1",
"universal-user-agent": "^6.0.0"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.0",
"@pika/plugin-build-web": "^0.9.0",
"@pika/plugin-ts-standard-pkg": "^0.9.0",
"@sinonjs/fake-timers": "^6.0.1",
"@types/fetch-mock": "^7.3.1",
"@types/jest": "^26.0.0",
"@types/sinonjs__fake-timers": "^6.0.1",
"fetch-mock": "^9.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.4",
"semantic-release": "^17.0.0",
"semantic-release-plugin-update-version-in-files": "^1.0.0",
"ts-jest": "^26.0.0",
"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"
],
[
"@pika/plugin-build-web"
]
]
},
"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.*"
]
}
]
]
}
}