forked from mulesoft-labs/js-client-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "client-oauth2",
"version": "4.3.4",
"description": "Straight-forward execution of OAuth 2.0 flows and authenticated API requests",
"main": "src/client-oauth2.js",
"typings": "index.d.ts",
"files": [
"src/",
"index.d.ts",
"LICENSE"
],
"browser": {
"buffer": false,
"safe-buffer": false,
"./src/request/index.js": "./src/request/browser.js"
},
"scripts": {
"lint": "standard",
"test-server-open": "PORT=7357 node test/support/server.js & echo $! > server.pid",
"test-server-close": "if [ -f server.pid ]; then kill -9 $(cat server.pid); rm server.pid; fi",
"test-browser": "PORT=7357 karma start --single-run",
"test-node": "PORT=7357 mocha -R spec --bail --require test/support/globals.js",
"test": "npm run lint && npm run test-server-open && npm run test-node && npm run test-browser; npm run test-server-close"
},
"engines": {
"node": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/remove-bg/js-client-oauth2.git"
},
"keywords": [
"oauth2",
"authentication",
"token"
],
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/remove-bg/js-client-oauth2/issues"
},
"homepage": "https://github.com/remove-bg/js-client-oauth2",
"devDependencies": {
"body-parser": "^1.19.0",
"browserify": "^16.5.0",
"chai": "^4.1.2",
"cors": "^2.8.1",
"envify": "^4.0.0",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"is-travis": "^2.0.0",
"karma": "^5.1.1",
"karma-browserify": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"mocha": "^8.1.0",
"object-assign": "^4.1.1",
"standard": "^14.3.3",
"watchify": "^3.11.1"
},
"dependencies": {
"popsicle": "^12.0.5",
"safe-buffer": "^5.2.0"
}
}