forked from intuit/oauth-jsclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.15 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "intuit-oauth",
"version": "1.2.0",
"description": "Intuit Node.js client for OAuth2.0 and OpenID",
"main": "./src/OAuthClient.js",
"scripts": {
"start": "node index.js",
"karma": "karma start karma.conf.js",
"test": "nyc mocha",
"posttest": "nyc check-coverage",
"test-watch": "mocha --watch --reporter=spec",
"docs-gen": "doctoc README.md --github --no-title",
"clean-install": "rm -rf node_modules && npm install"
},
"keywords": ["intuit-oauth", "intuit-oauth-nodejs", "intuit-nodejs", "oauth2.0", "openid", "openidConnect", "quickbooks-accounting", "quickbooks-payment"],
"nyc": {
"exclude": [
"node_modules",
"bin",
"coverage",
".nyc_output",
"sample",
"sample/node_modules"
],
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 80,
"reporter": [
"lcov",
"text-summary"
]
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/intuit/oauth-jsclient.git"
},
"author": {
"name": "Anil Kumar",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/intuit/oauth-jsclient/issues"
},
"homepage": "https://github.com/intuit/oauth-jsclient",
"devDependencies": {
"body-parser": "^1.15.2",
"chai": "^4.1.2",
"chance": "^1.0.13",
"cors": "^2.8.1",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.9.0",
"cors": "^2.8.1",
"express": "^4.14.0",
"is-travis": "^1.0.0",
"mocha": "^5.0.4",
"nock": "^9.2.3",
"nyc": "^11.6.0",
"phantomjs-prebuilt": "^2.1.4",
"standard": "^11.0.0",
"watchify": "^3.7.0"
},
"dependencies": {
"csrf": "^3.0.4",
"atob": "2.1.2",
"es6-promise": "^4.2.5",
"events": "^3.0.0",
"idtoken-verifier": "^1.2.0",
"jsonwebtoken": "^8.3.0",
"oauth-signature": "^1.3.1",
"object-assign": "^4.1.1",
"popsicle": "10.0.1",
"query-string": "6.2.0",
"rsa-pem-from-mod-exp": "^0.8.4",
"winston": "^3.1.0"
}
}