Skip to content

Commit c2e6409

Browse files
author
daniel.santos
committed
revert package.json
1 parent ab48e15 commit c2e6409

File tree

1 file changed

+64
-65
lines changed

1 file changed

+64
-65
lines changed

package.json

Lines changed: 64 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,66 @@
11
{
2-
"name": "@node-oauth/oauth2-server",
3-
"description": "Complete, framework-agnostic, compliant and well tested module for implementing an OAuth2 Server in node.js",
4-
"version": "4.1.1",
5-
"keywords": [
6-
"oauth",
7-
"oauth2"
8-
],
9-
"contributors": [
10-
"Thom Seddon <thom@seddonmedia.co.uk>",
11-
"Lars F. Karlström <lars@lfk.io>",
12-
"Rui Marinho <ruipmarinho@gmail.com>",
13-
"Tiago Ribeiro <tiago.ribeiro@gmail.com>",
14-
"Michael Salinger <mjsalinger@gmail.com>",
15-
"Nuno Sousa",
16-
"Max Truxa",
17-
"Daniel Reguero"
18-
],
19-
"main": "index.js",
20-
"types": "index.d.ts",
21-
"files": [
22-
"index.js",
23-
"index.d.ts",
24-
"lib"
25-
],
26-
"dependencies": {
27-
"@node-oauth/formats": "^1.0.0",
28-
"basic-auth": "2.0.1",
29-
"bluebird": "3.7.2",
30-
"promisify-any": "2.0.1",
31-
"type-is": "1.6.18"
32-
},
33-
"devDependencies": {
34-
"chai": "^4.3.4",
35-
"eslint": "^8.0.0",
36-
"mocha": "^9.1.2",
37-
"nyc": "^15.1.0",
38-
"sinon": "^12.0.1"
39-
},
40-
"license": "MIT",
41-
"engines": {
42-
"node": ">=12.0.0"
43-
},
44-
"scripts": {
45-
"pretest": "./node_modules/.bin/eslint lib test index.js",
46-
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'",
47-
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'test/**/*_test.js'",
48-
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --watch 'test/**/*_test.js'",
49-
"test:coverage": "NODE_ENV=test nyc --reporter=html --reporter=text ./node_modules/.bin/mocha 'test/**/*_test.js'",
50-
"lint": "npx eslint .",
51-
"lint:fix": "npx eslint . --fix"
52-
},
53-
"repository": {
54-
"type": "git",
55-
"url": "git+https://github.com/node-oauth/node-oauth2-server.git"
56-
},
57-
"bugs": {
58-
"url": "https://github.com/node-oauth/node-oauth2-server/issues"
59-
},
60-
"homepage": "https://github.com/node-oauth/node-oauth2-server#readme",
61-
"directories": {
62-
"doc": "docs",
63-
"lib": "lib",
64-
"test": "test"
65-
}
2+
"name": "@node-oauth/oauth2-server",
3+
"description": "Complete, framework-agnostic, compliant and well tested module for implementing an OAuth2 Server in node.js",
4+
"version": "4.1.1",
5+
"keywords": [
6+
"oauth",
7+
"oauth2"
8+
],
9+
"contributors": [
10+
"Thom Seddon <thom@seddonmedia.co.uk>",
11+
"Lars F. Karlström <lars@lfk.io>",
12+
"Rui Marinho <ruipmarinho@gmail.com>",
13+
"Tiago Ribeiro <tiago.ribeiro@gmail.com>",
14+
"Michael Salinger <mjsalinger@gmail.com>",
15+
"Nuno Sousa",
16+
"Max Truxa",
17+
"Daniel Reguero"
18+
],
19+
"main": "index.js",
20+
"types": "index.d.ts",
21+
"files": [
22+
"index.js",
23+
"index.d.ts",
24+
"lib"
25+
],
26+
"dependencies": {
27+
"@node-oauth/formats": "^1.0.0",
28+
"basic-auth": "2.0.1",
29+
"bluebird": "3.7.2",
30+
"promisify-any": "2.0.1",
31+
"type-is": "1.6.18"
32+
},
33+
"devDependencies": {
34+
"chai": "^4.3.4",
35+
"eslint": "^8.0.0",
36+
"mocha": "^9.1.2",
37+
"nyc": "^15.1.0",
38+
"sinon": "^12.0.1"
39+
},
40+
"license": "MIT",
41+
"engines": {
42+
"node": ">=12.0.0"
43+
},
44+
"scripts": {
45+
"pretest": "./node_modules/.bin/eslint lib test index.js",
46+
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'",
47+
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'test/**/*_test.js'",
48+
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --watch 'test/**/*_test.js'",
49+
"test:coverage": "NODE_ENV=test nyc --reporter=html --reporter=text ./node_modules/.bin/mocha 'test/**/*_test.js'",
50+
"lint": "npx eslint .",
51+
"lint:fix": "npx eslint . --fix"
52+
},
53+
"repository": {
54+
"type": "git",
55+
"url": "git+https://github.com/node-oauth/node-oauth2-server.git"
56+
},
57+
"bugs": {
58+
"url": "https://github.com/node-oauth/node-oauth2-server/issues"
59+
},
60+
"homepage": "https://github.com/node-oauth/node-oauth2-server#readme",
61+
"directories": {
62+
"doc": "docs",
63+
"lib": "lib",
64+
"test": "test"
65+
}
6666
}
67-

0 commit comments

Comments
 (0)