-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
45 lines (45 loc) · 1.39 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
{
"name": "@panva/oauth4webapi",
"version": "0.0.6",
"description": "OAuth 2 / OpenID Connect Client for Web API runtimes",
"keywords": [],
"homepage": "https://github.com/panva/oauth4webapi",
"repository": "panva/oauth4webapi",
"funding": {
"url": "https://github.com/sponsors/panva"
},
"license": "MIT",
"author": "Filip Skokan <[email protected]>",
"sideEffects": false,
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/index.js",
"build/index.d.ts"
],
"scripts": {
"_format": "find src test examples -type f -name '*.ts' | xargs prettier",
"build": "tsc && tsc --declaration true --emitDeclarationOnly true --removeComments false && tsc -p examples",
"coverage": "c8 ava",
"docs": "npx patch-package && typedoc",
"format": "npm run _format -- --write",
"format-check": "npm run _format -- --check",
"prepack": "npm run format && npm run docs && ./examples/.update-diffs.mjs && git diff --quiet && npm run test && npm run build",
"test": "ava"
},
"devDependencies": {
"@types/node": "^17.0.21",
"ava": "^4.1.0",
"c8": "^7.11.0",
"jose": "^4.6.0",
"patch-package": "^6.4.7",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.6.2",
"undici": "^4.15.1",
"zx": "^6.0.1"
}
}