This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "anvil-connect-nodejs",
"version": "0.4.3",
"description": "Anvil Connect JavaScript client for Node.js",
"author": {
"name": "Christian Smith",
"email": "smith@anvil.io",
"url": "http://anvil.io"
},
"contributors": [
{
"name": "Tom Kersten",
"email": "tom@whitespur.com",
"url": "http://tomkersten.com"
}
],
"main": "index.js",
"scripts": {
"test": "mocha test && mocha --compilers coffee:coffee-script/register -R spec && standard && echo Code looks good!",
"test-watch": "mocha --compilers coffee:coffee-script/register -R spec --watch",
"lint": "eslint --ignore-path .gitignore . && echo Code looks good!"
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/connect-nodejs.git"
},
"keywords": [
"OpenID",
"OpenID Connect",
"OAuth",
"OAuth 2.0",
"Anvil",
"Anvil Connect",
"Authentication",
"Authorization"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilresearch/connect-nodejs/issues"
},
"homepage": "https://github.com/anvilresearch/connect-nodejs",
"dependencies": {
"anvil-connect-jwt": "^0.1.8",
"async": "^1.3.0",
"base64url": "^1.0.4",
"jwa": "^1.0.1",
"lodash": "^3.10.0",
"qs": "^5.0.0",
"request-promise": "^1.0.1",
"superagent": "^1.2.0"
},
"devDependencies": {
"chai": "^3.0.0",
"coffee-script": "^1.7.1",
"mocha": "^2.3.3",
"nock": "^2.6.0",
"pem-jwk": "^1.5.1",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"standard": "^7.1.0"
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
}
}