forked from IdentityModel/oidc-client-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "@inrupt/oidc-client",
"version": "1.11.6",
"description": "OpenID Connect (OIDC) & OAuth2 client library",
"main": "lib/oidc-client.min.js",
"scripts": {
"build": "gulp",
"start": "node samples/VanillaJS/server.js",
"test": "mocha --compilers js:babel-register test/unit/*.spec.js",
"all": "gulp build & mocha --compilers js:babel-register test/unit/*.spec.js",
"prepublishOnly": "npm run build",
"postversion": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/inrupt/oidc-client-js.git"
},
"author": "Brock Allen & Dominick Baier",
"contributors": [
{
"name": "Brock Allen",
"email": "[email protected]"
},
{
"name": "Dominick Baier",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/inrupt/oidc-client-js/issues"
},
"homepage": "https://github.com/inrupt/oidc-client-js",
"dependencies": {
"acorn": "^8.4.1",
"base64-js": "^1.5.1",
"core-js": "^3.16.4",
"crypto-js": "^4.0.0",
"serialize-javascript": "^6.0.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-es2015-classes": "^6.7.7",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^4.3.4",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"jsbn": "^1.1.0",
"jsrsasign": "^10.3.0",
"mocha": "^5.2.0",
"natives": "^1.1.6",
"open": "^8.4.0",
"terser-webpack-plugin": "^4.2.3",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.46.0",
"webpack-stream": "^6.1.2"
},
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
}
}