-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 948 Bytes
/
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
{
"name": "csvw-server",
"version": "1.0.0",
"description": "An Express-based server for handling CSV on the Web (CSVW) format, supporting various content negotiation options.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/theodi/csvw-server.git"
},
"keywords": [
"csvw",
"express",
"content-negotiation",
"json-ld",
"csv",
"data-server"
],
"author": "The Open Data Institute <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"csv-stringify": "^6.4.4",
"csv-writer": "^1.6.0",
"datatables.net": "^1.13.6",
"datatables.net-dt": "^1.13.6",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"negotiator": "^0.6.3"
}
}