forked from gr2m/universal-github-app-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.41 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.41 KB
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
{
"name": "universal-github-app-jwt",
"version": "0.0.0-development",
"browser": {
"./pkg/dist-src/get-token.js": "./pkg/dist-src/get-token-browser.js"
},
"description": "Calculate GitHub App bearer tokens for Node & modern browsers",
"repository": "https://github.com/gr2m/universal-github-app-jwt",
"keywords": [
"github",
"authentication",
"app",
"jwt",
"webcrypto"
],
"author": "Gregor Martynus (https://github.com/gr2m)",
"bugs": {
"url": "https://github.com/gr2m/universal-github-app-jwt/issues"
},
"homepage": "https://github.com/gr2m/universal-github-app-jwt#readme",
"scripts": {
"build": "pika build",
"test": "npm run test:node && npm run test:browser",
"test:node": "jest test/node.test.ts --coverage",
"pretest:browser": "npm run -s build",
"test:browser": "node test/browser.test.js",
"lint": "prettier --check '{src,test}/**/*' README.md package.json",
"lint:fix": "prettier --write '{src,test}/**/*' README.md package.json"
},
"license": "MIT",
"dependencies": {
"@types/jsonwebtoken": "^8.3.3",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.1",
"@pika/plugin-bundle-web": "^0.9.1",
"@pika/plugin-ts-standard-pkg": "^0.9.1",
"@types/jest": "^25.1.0",
"@types/lolex": "^5.1.0",
"jest": "^25.1.0",
"lolex": "^6.0.0",
"playwright": "^1.0.1",
"prettier": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"semantic-release": "^17.0.0",
"serve-handler": "^6.1.1",
"ts-jest": "^26.0.0",
"typescript": "^3.6.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"
],
[
"@gr2m/pika-plugin-build-web"
],
[
"@pika/plugin-bundle-web",
{
"browser": true
}
]
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "./pkg"
}
]
]
}
}