forked from anvilresearch/connect-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.88 KB
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
{
"name": "camfou-connect-nodejs",
"version": "0.0.0-development",
"description": "Fork of Anvil Connect JavaScript client for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha && npm run lint",
"test-watch": "mocha --compilers coffee:coffee-script/register -R spec --watch",
"lint": "eslint --ignore-path .gitignore . && echo Code looks good!",
"cover": "nyc --reporter=lcov npm test",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/camfou/connect-nodejs.git"
},
"keywords": [
"OpenID",
"OpenID Connect",
"OAuth",
"OAuth 2.0",
"Anvil",
"Anvil Connect",
"Authentication",
"Authorization"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/camfou/connect-nodejs/issues"
},
"homepage": "https://github.com/camfou/connect-nodejs",
"dependencies": {
"async": "1.3.0",
"base64url": "3.0.1",
"camfou-connect-jwt": "0.2.5",
"jwa": "1.4.1",
"lodash": "^4.17.15",
"qs": "6.6.0",
"request": "2.88.0",
"request-promise": "4.2.4",
"superagent": "3.8.3"
},
"devDependencies": {
"chai": "^4.2.0",
"coffeescript": "^2.3.2",
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.0.2",
"nock": "^10.0.6",
"nyc": "^13.3.0",
"pem-jwk": "^1.5.1",
"sinon": "^7.2.7",
"sinon-chai": "^3.3.0",
"semantic-release": "^17.0.4"
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
}
}