forked from OADA/oada-lookup-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "oada-lookup",
"version": "0.2.0",
"description": "JavaScript utility library to lookup OADA documents such as Well-Known (RFC 5785) resource, e.g., oada-configuration, openid-configuration, etc, and public OADA client registrations",
"keywords": [
"OADA",
"oada-configuration",
"openid-configuration",
"client registration",
"client discovery"
],
"homepage": "https://github.com/OADA/oada-lookup-js",
"bugs": {
"url": "https://github.com/OADA/oada-lookup-js/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Andrew Balmos",
"email": "[email protected]"
},
"main": "lookup.js",
"repository": {
"type": "git",
"url": "https://github.com/OADA/oada-lookup-js.git"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "./node_modules/.bin/_mocha -w",
"cover": "./node_modules/.bin/istanbul cover --preload-sources -x gulpfile.js node_modules/.bin/_mocha -- -R spec",
"clean": "rm -rf ./coverage"
},
"dependencies": {
"superagent": "~0.20.0"
},
"devDependencies": {
"mocha": "~1.21.4",
"chai": "~1.9.1",
"istanbul": "~0.3.2",
"jshint": "~2.5.6",
"jscs": "~1.6.2",
"coveralls": "~2.11.2",
"gulp": "3.8.8",
"gulp-jshint": "~1.8.4",
"jshint-stylish": "~1.0.0",
"gulp-jscs": "~1.1.2",
"nock": "~0.48.0"
}
}