-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 1.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@solid/solid-auth-oidc",
"version": "0.5.2",
"engines": {
"node": ">= 6.0"
},
"description": "Authentication library for Solid client based on OAuth2/OpenID Connect",
"main": "./lib/index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "npm run build-lib",
"build-dist": "webpack --progress --colors --optimize-minimize",
"build-lib": "babel src -d lib",
"dist": "npm run build && npm run build-dist",
"mocha": "nyc mocha test/*.js",
"postversion": "git push --follow-tags",
"prepublish": "npm run build && npm run test",
"preversion": "npm test",
"standard": "standard src/*",
"test": "npm run standard && npm run mocha"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-auth-oidc"
},
"keywords": [
"authentication",
"oidc",
"openid",
"oauth",
"oauth2",
"webid",
"solid",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"data",
"rest"
],
"author": "Dmitri Zagidulin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-auth-oidc/issues"
},
"homepage": "https://github.com/solid/solid-auth-oidc",
"dependencies": {
"@solid/oidc-rp": "^0.11.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"localstorage-memory": "^1.0.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"standard": "^16.0.2",
"webpack": "^5.4.0",
"whatwg-url": "^8.4.0"
},
"standard": {
"globals": [
"localStorage",
"URL",
"URLSearchParams"
]
}
}