-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.49 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
{
"name": "@solid/oidc-rp",
"version": "0.11.7",
"description": "OpenID Connect Relying Party client library",
"main": "./src/index.js",
"module": "./src/index.js",
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run dist",
"dist": "webpack --progress",
"prepare": "npm run dist && npm run test",
"preversion": "npm test",
"postversion": "git push --follow-tags",
"test": "mocha --timeout=10000 --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid/oidc-rp.git"
},
"author": "Solid Project",
"contributors": [
{
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/oidc-rp/issues"
},
"homepage": "https://github.com/solid/oidc-rp",
"dependencies": {
"@solid/jose": "^0.6.8",
"assert": "^2.0.0",
"base64url": "^3.0.1",
"node-fetch": "^2.6.7",
"standard-http-error": "^2.0.1",
"whatwg-url": "^8.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^9.2.2",
"nock": "^13.2.9",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}