forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.07 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
{
"name": "solid-server",
"description": "Solid server on top of the file-system",
"version": "4.1.1",
"author": {
"name": "Tim Berners-Lee",
"email": "[email protected]"
},
"contributors": [
{
"name": "Martin Martinez Rivera",
"email": "[email protected]"
},
{
"name": "Nicola Greco",
"email": "[email protected]"
},
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
},
{
"name": "Ruben Verborgh",
"email": "[email protected]",
"url": "https://ruben.verborgh.org/"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solid/node-solid-server"
},
"homepage": "http://github.com/solid/node-solid-server",
"bugs": "http://github.com/solid/node-solid-server/issues",
"dependencies": {
"body-parser": "^1.18.3",
"busboy": "^0.2.12",
"camelize": "^1.0.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"cors": "^2.7.1",
"debug": "^2.6.9",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"extend": "^3.0.0",
"from2": "^2.1.0",
"fs-extra": "^2.1.0",
"glob": "^7.1.1",
"global-tunnel-ng": "^2.1.0",
"handlebars": "^4.0.6",
"http-proxy-middleware": "^0.17.4",
"inquirer": "^1.0.2",
"ip-range-check": "0.0.2",
"is-ip": "^2.0.0",
"li": "^1.0.1",
"mime-types": "^2.1.11",
"negotiator": "^0.6.0",
"node-fetch": "^2.1.2",
"node-forge": "^0.6.38",
"nodemailer": "^3.1.4",
"oidc-auth-manager": "^0.16.1",
"oidc-op-express": "^0.0.3",
"rdflib": "^0.17.0",
"recursive-readdir": "^2.1.0",
"rimraf": "^2.5.0",
"solid-auth-client": "^2.1.1",
"solid-namespace": "^0.1.0",
"solid-permissions": "^0.6.0",
"solid-ws": "^0.2.3",
"ulid": "^0.1.0",
"uuid": "^3.0.0",
"valid-url": "^1.0.9",
"vhost": "^3.0.2",
"webid": "^0.3.10"
},
"devDependencies": {
"@trust/oidc-op": "solid/oidc-op#rc-0.3.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"dirty-chai": "^1.2.2",
"localstorage-memory": "^1.0.2",
"mocha": "^5.1.1",
"nock": "^9.0.14",
"node-mocks-http": "^1.7.0",
"nyc": "^13.0.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"snyk": "^1.88.2",
"solid-auth-oidc": "^0.2.0",
"sonarjs": "^1.0.0",
"standard": "^8.6.0",
"supertest": "^3.0.0",
"whatwg-url": "^6.1.0"
},
"main": "index.js",
"scripts": {
"solid": "node ./bin/solid",
"standard": "standard '{bin,examples,lib,test}/**/*.js'",
"nyc": "NODE_TLS_REJECT_UNAUTHORIZED=0 nyc --reporter=text-summary mocha",
"mocha": "NODE_TLS_REJECT_UNAUTHORIZED=0 mocha",
"sonar": "sonarjs",
"test": "npm run standard && npm run nyc"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"bin": {
"solid": "./bin/solid"
},
"engines": {
"node": ">=8.0"
}
}