-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 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
{
"name": "@node-oauth/oauth2-server",
"description": "Complete, framework-agnostic, compliant and well tested module for implementing an OAuth2 Server in node.js",
"version": "5.2.0",
"keywords": [
"oauth",
"oauth2"
],
"contributors": [
"Thom Seddon <thom@seddonmedia.co.uk>",
"Lars F. Karlström <lars@lfk.io>",
"Rui Marinho <ruipmarinho@gmail.com>",
"Tiago Ribeiro <tiago.ribeiro@gmail.com>",
"Michael Salinger <mjsalinger@gmail.com>",
"Nuno Sousa",
"Max Truxa",
"Daniel Reguero",
"Jan Küster <info@jankuester.com>"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"lib",
"CHANGELOG.md"
],
"dependencies": {
"@node-oauth/formats": "1.0.0",
"basic-auth": "2.0.1",
"type-is": "2.0.1"
},
"devDependencies": {
"chai": "6.2.2",
"eslint": "8.57.1",
"jsdoc-to-markdown": "^9.1.3",
"mocha": "11.7.5",
"nyc": "18.0.0",
"sinon": "21.0.3",
"vitepress": "^2.0.0-alpha.15"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"pretest": "eslint lib test index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'",
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'test/**/*_test.js'",
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --watch 'test/**/*_test.js'",
"test:coverage": "NODE_ENV=test nyc --reporter=html --reporter=lcov --reporter=text ./node_modules/.bin/mocha 'test/**/*_test.js'",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "npm run docs:setup && npm run docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:api": "node docs/build-api.js lib docs/api",
"docs:setup": "cd docs/guide && ln -sf ../../CONTRIBUTING.md contributing.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-oauth/node-oauth2-server.git"
},
"bugs": {
"url": "https://github.com/node-oauth/node-oauth2-server/issues"
},
"homepage": "https://github.com/node-oauth/node-oauth2-server#readme",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
}
}