forked from mulesoft-labs/js-client-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
70
71
{
"name": "client-oauth2",
"version": "4.2.3",
"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/mulesoft/js-client-oauth2.git"
},
"keywords": [
"oauth2",
"authentication",
"token"
],
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mulesoft/js-client-oauth2/issues"
},
"homepage": "https://github.com/mulesoft/js-client-oauth2",
"devDependencies": {
"body-parser": "^1.15.2",
"browserify": "^16.1.1",
"chai": "^4.1.2",
"cors": "^2.8.1",
"envify": "^4.0.0",
"es6-promise": "^4.2.4",
"express": "^4.14.0",
"is-travis": "^1.0.0",
"karma": "^3.0.0",
"karma-browserify": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^5.0.4",
"object-assign": "^4.1.1",
"phantomjs-prebuilt": "^2.1.4",
"standard": "^12.0.0",
"watchify": "^3.7.0"
},
"dependencies": {
"popsicle": "^10.0.0",
"safe-buffer": "^5.1.1"
}
}