forked from oauthjs/express-oauth-server
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@node-oauth/express-oauth-server",
"version": "4.1.1",
"description": "OAuth provider for express",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "npx eslint -c .eslintrc ./",
"lint:fix": "npx eslint . --fix",
"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'",
"build:docs": "jsdoc -c jsdoc.conf.json"
},
"repository": {
"type": "git",
"url": "git://github.com/node-oauth/express-oauth-server.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"express",
"oauth",
"oauth2",
"@node-oauth",
"oauth2-server"
],
"contributors": [
"Nuno Sousa <[email protected]>",
"Jan Küster <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@node-oauth/oauth2-server": "^5.2.0"
},
"peerDependencies": {
"express": "*"
},
"devDependencies": {
"body-parser": "^1.20.2",
"eslint": "^8.56.0",
"express": "^4.19.2",
"jsdoc": "^4.0.3",
"mocha": "^10.7.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^17.0.1",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=16"
}
}