-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
157 lines (157 loc) · 4.23 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "life-server",
"description": "A decentralized personal data server inspired by the Solid Project",
"version": "8.0.0",
"author": {
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
},
"contributors": [
{
"name": "Arne Hassel",
"url": "http://icanhasweb.net/"
},
{
"name": "Tim Berners-Lee",
"email": "[email protected]"
},
{
"name": "Nicola Greco",
"email": "[email protected]"
},
{
"name": "Kjetil Kjernsmo",
"email": "[email protected]",
"url": "http://kjetil.kjernsmo.net/"
},
{
"name": "Martin Martinez Rivera",
"email": "[email protected]"
},
{
"name": "Andrei Sambra",
"url": "https://deiu.me/"
},
{
"name": "Ruben Taelman",
"url": "https://www.rubensworks.net/"
},
{
"name": "Ruben Verborgh",
"email": "[email protected]",
"url": "https://ruben.verborgh.org/"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/interop-alliance/life-server"
},
"homepage": "https://github.com/interop-alliance/life-server",
"bugs": "https://github.com/interop-alliance/life-server/issues",
"dependencies": {
"@digitalbazaar/did-io": "^1.1.0",
"@digitalbazaar/security-document-loader": "^1.1.1",
"@digitalcredentials/ed25519-signature-2020": "^3.0.2",
"@digitalcredentials/ed25519-verification-key-2020": "^3.2.0",
"@digitalcredentials/vc": "^1.1.2",
"@digitalcredentials/x25519-key-agreement-key-2020": "^2.0.2",
"@interop-alliance/oidc-rp": "^0.13.0",
"@interop/did-web-resolver": "^2.2.1",
"@interop/oidc-op": "^1.0.0",
"@interop/solid-permissions": "^0.10.0",
"@solid/oidc-rs": "^0.5.5",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.5.3",
"busboy": "^0.3.1",
"camelize": "^1.0.0",
"commander": "^6.2.1",
"cors": "^2.8.5",
"crypto-ld": "^6.0.0",
"crypto-random-string": "^3.3.1",
"did-context": "^3.0.1",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"flex-docstore": "^1.0.0",
"from2": "^2.3.0",
"fs-extra": "^10.0.0",
"handlebars": "^4.7.6",
"inquirer": "^7.3.3",
"li": "^1.3.0",
"memorystore": "^1.6.4",
"mime-types": "^2.1.27",
"nano": "^10.0.0",
"negotiator": "^0.6.2",
"node-fetch": "^2.6.2",
"nodemailer": "^6.4.17",
"oidc-op-express": "^0.0.3",
"pino": "^6.8.0",
"rdflib": "interop-alliance/rdflib-lite#rc2.0.0",
"recursive-readdir": "^2.2.2",
"shortid": "^2.2.16",
"solid-namespace": "^0.5.1",
"standard-http-error": "^2.0.1",
"ulid": "^2.3.0",
"uuid": "^8.3.2",
"valid-url": "^1.0.9",
"vhost": "^3.0.2",
"xr-context": "interop-alliance/xr-context#main"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"dirty-chai": "^2.0.1",
"localstorage-memory": "^1.0.3",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"node-mocks-http": "^1.9.0",
"nyc": "^15.1.0",
"oidc-web": "^0.4.1",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"standard": "^16.0.3",
"supertest": "^6.0.1",
"turtle-validator": "^1.1.1"
},
"main": "src/index.js",
"scripts": {
"init": "cross-env bin/server init",
"start": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 DEBUG=memorystore node bin/server start",
"standard": "standard --fix '{bin,examples,lib,test}/**/*.js'",
"validate": "node ./test/validate-turtle.js",
"test": "npm run standard && npm run validate && npm run nyc",
"test-bail": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha -b",
"nyc": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 nyc --reporter=html mocha",
"mocha": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha",
"reset": "rm -rf .db data && git checkout -- ./data/.gitkeep"
},
"mocha": {
"recursive": true,
"timeout": 100000
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"bin": {
"server": "./bin/server"
},
"engines": {
"node": ">=10.0"
}
}