forked from OADA/oada-id-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
51
52
53
54
55
{
"name": "oadaIdClient",
"version": "0.0.1",
"description": "OADA identity client library for Node.JS and Browser",
"main": "index.js",
"scripts": {
"prepublish": "grunt build"
},
"directories": {
"lib": "src",
"test": "test",
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/OADA/oada-login.git"
},
"keywords": [
"oada",
"openid"
],
"author": "Alex Layton <[email protected]> (http://alex.layton.in)",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/OADA/oada-login/issues"
},
"homepage": "https://github.com/OADA/oada-login",
"browser": {
"index.js": "./src/browser.js",
"./src/jws-jwk.js": "./src/shims/jws-jwk.js"
},
"dependencies": {
"URIjs": "^1.13.2",
"jsonwebtoken": "^1.1.1",
"jsrsasign": "0.0.3",
"jws": "^0.2.6",
"object-assign": "^1.0.0",
"rsa-pem-from-mod-exp": "^0.8.4",
"superagent": "^0.18.2"
},
"devDependencies": {
"browserify": "^5.11.1",
"express": "^4.9.0",
"grunt": "^0.4.5",
"grunt-browserify": "^3.0.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-express": "^1.4.1",
"grunt-jscs": "^0.7.1",
"grunt-newer": "^0.7.0",
"load-grunt-tasks": "^0.6.0",
"time-grunt": "^1.0.0",
"uglifyify": "^2.5.0"
}
}