forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.15 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
{
"name": "solid-server",
"description": "Solid server on top of the file-system",
"version": "4.0.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.14.2",
"busboy": "^0.2.12",
"camelize": "^1.0.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "^4.13.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.11.3",
"extend": "^3.0.0",
"from2": "^2.1.0",
"fs-extra": "^2.1.0",
"glob": "^7.1.1",
"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",
"jsonld": "^0.4.5",
"li": "^1.0.1",
"mime-types": "^2.1.11",
"moment": "^2.18.1",
"negotiator": "^0.6.0",
"node-fetch": "^1.7.1",
"node-forge": "^0.6.38",
"nodemailer": "^3.1.4",
"nomnom": "^1.8.1",
"oidc-auth-manager": "^0.13.0",
"oidc-op-express": "^0.0.3",
"rdflib": "^0.16.2",
"recursive-readdir": "^2.1.0",
"request": "^2.72.0",
"rimraf": "^2.5.0",
"run-waterfall": "^1.1.3",
"solid-namespace": "^0.1.0",
"solid-permissions": "^0.5.1",
"solid-ws": "^0.2.3",
"string": "^3.3.0",
"ulid": "^0.1.0",
"uuid": "^3.0.0",
"valid-url": "^1.0.9",
"vhost": "^3.0.2",
"webid": "^0.3.7",
"jsrsasign": "8.0.0"
},
"optionalDependencies": {
"x509": "^0.3.2"
},
"devDependencies": {
"@trust/oidc-op": "^0.3.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"dirty-chai": "^1.2.2",
"hippie": "^0.5.0",
"localstorage-memory": "^1.0.2",
"mocha": "^3.2.0",
"nock": "^9.0.14",
"node-mocks-http": "^1.5.6",
"nyc": "^10.1.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"solid-auth-oidc": "^0.2.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 mocha",
"mocha": "NODE_TLS_REJECT_UNAUTHORIZED=0 mocha",
"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": ">=6.0"
}
}