forked from oauthjs/node-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·79 lines (79 loc) · 1.96 KB
/
package.json
File metadata and controls
executable file
·79 lines (79 loc) · 1.96 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
74
75
76
77
78
79
{
"name": "oauth2-server",
"description": "Complete, framework-agnostic, compliant and well tested module for implementing an OAuth2 Server in node.js",
"version": "3.0.1",
"keywords": [
"oauth",
"oauth2"
],
"contributors": [
{
"name": "Thom Seddon",
"email": "thom@seddonmedia.co.uk"
},
{
"name": "Lars F. Karlström",
"email": "lars@lfk.io"
},
{
"name": "Rui Marinho",
"email": "ruipmarinho@gmail.com"
},
{
"name": "Tiago Ribeiro",
"email": "tiago.ribeiro@gmail.com"
},
{
"name": "Michael Salinger",
"email": "mjsalinger@gmail.com"
},
{
"name": "Nuno Sousa"
},
{
"name": "Max Truxa"
}
],
"main": "index.js",
"dependencies": {
"basic-auth": "^2.0.1",
"fs-extra": "^7.0.1",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.11",
"statuses": "^1.5.0",
"tslib": "^1.9.3",
"type-is": "^1.6.16"
},
"devDependencies": {
"mocha": "^6.1.3",
"should": "^13.2.3",
"sinon": "^7.3.1",
"@types/basic-auth": "^1.1.2",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@types/sinon": "^7.0.11",
"@types/statuses": "^1.5.0",
"@types/type-is": "^1.6.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
},
"license": "MIT",
"engines": {
"node": ">=8.0"
},
"scripts": {
"lint": "tslint -p tsconfig.build.json -c tslint.json",
"lint:all": "tslint -p tsconfig.json -c tslint.json",
"pretest": "npx jshint --config ./.jshintrc lib test",
"build": "npx tsc -p tsconfig.build.json",
"test": "NODE_ENV=test npx mocha 'test/**/*_test.js'",
"test2": "npx mocha 'test/**/*.spec.ts' --config 'test/.mocharc.jsonc'",
"test-debug": "NODE_ENV=test npx mocha --inspect --debug-brk 'test/**/*_test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/oauthjs/node-oauth2-server.git"
}
}