UNPKG

1.74 kBJSONView Raw
1{
2 "name": "anvil-connect-nodejs",
3 "version": "0.4.2",
4 "description": "Anvil Connect JavaScript client for Node.js",
5 "author": {
6 "name": "Christian Smith",
7 "email": "smith@anvil.io",
8 "url": "http://anvil.io"
9 },
10 "contributors": [
11 {
12 "name": "Tom Kersten",
13 "email": "tom@whitespur.com",
14 "url": "http://tomkersten.com"
15 }
16 ],
17 "main": "index.js",
18 "scripts": {
19 "test": "mocha test && mocha --compilers coffee:coffee-script/register -R spec && standard && echo Code looks good!",
20 "test-watch": "mocha --compilers coffee:coffee-script/register -R spec --watch",
21 "lint": "eslint --ignore-path .gitignore . && echo Code looks good!"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/anvilresearch/connect-nodejs.git"
26 },
27 "keywords": [
28 "OpenID",
29 "OpenID Connect",
30 "OAuth",
31 "OAuth 2.0",
32 "Anvil",
33 "Anvil Connect",
34 "Authentication",
35 "Authorization"
36 ],
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/anvilresearch/connect-nodejs/issues"
40 },
41 "homepage": "https://github.com/anvilresearch/connect-nodejs",
42 "dependencies": {
43 "anvil-connect-jwt": "^0.1.8",
44 "async": "^1.3.0",
45 "base64url": "^1.0.4",
46 "jwa": "^1.0.1",
47 "lodash": "^3.10.0",
48 "qs": "^5.0.0",
49 "request-promise": "^1.0.1",
50 "superagent": "^1.2.0"
51 },
52 "devDependencies": {
53 "chai": "^3.0.0",
54 "coffee-script": "^1.7.1",
55 "mocha": "^2.3.3",
56 "nock": "^2.6.0",
57 "pem-jwk": "^1.5.1",
58 "sinon": "^1.15.4",
59 "sinon-chai": "^2.8.0",
60 "standard": "^7.1.0"
61 },
62 "standard": {
63 "globals": [
64 "after",
65 "afterEach",
66 "before",
67 "beforeEach",
68 "describe",
69 "it"
70 ]
71 }
72}