-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 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
{
"name": "@nats-io/jwt",
"version": "0.0.11",
"description": "NATS jwt.js",
"main": "lib/mod.js",
"types": "lib/mod.d.ts",
"files": [
"lib/",
"MAINTAINERS.md",
"CODE-OF-CONDUCT.md",
"LICENSE"
],
"scripts": {
"setup": "curl -fsSL https://deno.land/x/install/install.sh | sh",
"fmt": "deno fmt src/*/*.ts test/*.ts test/*/*.ts node_test/*.js",
"prepare": "npm run build",
"clean": "shx rm -Rf ./esm/jwt.js ./lib ./.deps ./cjs_src",
"build": "npm run clean && deno run -A bin/generate_version.ts && npm run build-cjs",
"cjs": "shx rm -Rf ./cjs_src && deno run --allow-all ./bin/cjs-fix-imports.ts -o cjs_src/ ./src",
"build-cjs": "npm run cjs && tsc",
"test": "deno test -A",
"lint": "deno lint src/",
"doc": "npm run clean && rm -Rf docs && npm run build && node_modules/.bin/typedoc --out docs/ && touch ./docs/.nojekyll",
"check-package": "deno run --allow-all bin/check-bundle-version.ts",
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
"bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
},
"dependencies": {
"@nats-io/nkeys": "2.0.3"
},
"devDependencies": {
"@types/node": "^22.13.10",
"shx": "^0.4.0",
"typedoc": "^0.28.12",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git@github.com:nats-io/jwt.js.git"
},
"bugs": {
"url": "https://github.com/nats-io/jwt.js/issues"
},
"keywords": [
"NATS",
"JWT"
],
"author": {
"name": "The NATS Authors"
},
"license": "Apache-2.0"
}