This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.08 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
86
87
88
89
90
91
92
93
{
"name": "@trust/oidc-web",
"version": "0.2.1",
"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 && npm run build-dist",
"build-lib": "rm -rf lib && babel src -d lib",
"build-dist": "webpack --progress --colors",
"coverage": "nyc --reporter=lcov mocha test",
"jsdoc": "jsdoc -c jsdoc.json -r",
"mocha": "nyc mocha test/",
"postversion": "git push --follow-tags",
"prepublish": "npm run build && npm run test",
"preversion": "npm test",
"standard": "standard src/* test/*",
"test": "npm run standard && npm run mocha",
"watch": "webpack --watch"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/oidc-web"
},
"keywords": [
"authentication",
"authorization",
"oidc",
"openid",
"connect",
"oauth",
"oauth2",
"decentralized",
"web"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilresearch/oidc-web/issues"
},
"homepage": "https://github.com/anvilresearch/oidc-web",
"contributors": [
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
}
],
"dependencies": {
"@trust/oidc-rp": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"jsdoc": "^3.5.5",
"localstorage-memory": "^1.0.2",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"sinon": "^3.3.0",
"sinon-chai": "^2.14.0",
"standard": "^10.0.3",
"webpack": "^3.6.0",
"whatwg-url": "^6.2.1"
},
"standard": {
"globals": [
"it",
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"localStorage",
"URL",
"URLSearchParams"
]
}
}