-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "freja",
"version": "1.1.0",
"description": "Freja API for node.js",
"main": "./index.js",
"types": "./types.d.ts",
"scripts": {
"build:docs": "jsdoc ./index.js -c jsdoc.json -t node_modules/docdash-extended -d ./docs/jsdoc",
"build:markdown": "jsdoc2md ./index.js > FrejaAPI.md",
"build:types": "jsdoc ./index.js -c jsdoc.json -t node_modules/tsd-jsdoc/dist -d ./",
"build": "npm run build:docs && npm run build:markdown && npm run build:types"
},
"author": "Daniel Sörlöv <daniel@sorlov.com>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dsorlov/jsfreja.git"
},
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/sorlov"
},
"bugs": "https://github.com/dsorlov/jsfreja/issues",
"devDependencies": {
"docdash": "^2.0.2",
"docdash-extended": "^1.0.2",
"jsdoc": "^3.6.11",
"jsdoc-export-default-interop": "^0.3.1",
"jsdoc-to-markdown": "^9.0.5",
"tsd-jsdoc": "^2.5.0",
"typedoc": "^0.26.11"
},
"dependencies": {
"jsonwebtoken": "^9.0.2"
}
}