-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.04 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
{
"name": "universal-github-app-jwt",
"type": "module",
"version": "0.0.0-development",
"exports": "./index.js",
"imports": {
"#crypto": {
"node": "./lib/crypto-node.js",
"default": "./lib/crypto-native.js"
}
},
"description": "Calculate GitHub App bearer tokens for Node & modern browsers",
"repository": "github:gr2m/universal-github-app-jwt",
"keywords": [
"github",
"authentication",
"app",
"jwt",
"webcrypto"
],
"author": "Gregor Martynus (https://github.com/gr2m)",
"scripts": {
"test": "npm run build && npm run test:node && npm run test:deno && npm run test:edge && npm run test:tsc && npm run test:tsd && npm run lint",
"test:node": "TEST_ENVIRONMENT=NODE vitest run",
"test:bun": "TEST_ENVIRONMENT=BUN bun test",
"test:deno": "TEST_ENVIRONMENT=DENO deno run -A --node-modules-dir npm:vitest@latest run",
"test:edge": "TEST_ENVIRONMENT=EDGE vitest run --environment=edge-runtime",
"test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js",
"test:tsd": "tsd",
"lint": "prettier --check '{src,test}/**/*' README.md package.json",
"lint:fix": "prettier --write '{src,test}/**/*' README.md package.json",
"coverage": "c8 report --reporter html",
"postcoverage": "open-cli coverage/index.html",
"build": "npm run build:default && npm run build:node",
"build:default": "esbuild index.js --bundle --outfile=dist/default.js --platform=browser --target=es2020 --format=esm",
"build:node": "esbuild index.js --bundle --outfile=dist/node.js --platform=node --target=es2020 --format=esm"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^24.1.0",
"esbuild": "^0.27.0",
"open-cli": "^8.0.0",
"prettier": "^3.0.0",
"tsd": "^0.33.0",
"typescript": "^5.0.0",
"vitest": "^4.0.0"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
{
"name": "beta",
"prerelease": true
}
]
},
"renovate": {
"extends": [
"github>gr2m/.github"
]
}
}