-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.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
{
"name": "rdf-parser-csvw",
"version": "1.0.0",
"description": "CSV on the Web parser",
"type": "module",
"main": "index.js",
"scripts": {
"test": "stricter-standard && c8 --reporter=lcov --reporter=text-summary mocha"
},
"bin": {
"csvw-metadata": "./bin/csvw-metadata.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rdf-ext/rdf-parser-csvw.git"
},
"keywords": [
"rdf",
"rdf-ext",
"csv",
"csvw"
],
"author": "Thomas Bergwinkl <[email protected]> (https://www.bergnet.org/people/bergi/card#me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdf-ext/rdf-parser-csvw/issues"
},
"homepage": "https://github.com/rdf-ext/rdf-parser-csvw",
"dependencies": {
"@rdfjs/data-model": "^2.0.2",
"commander": "^12.1.0",
"csv-parse": "^5.5.6",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"readable-stream": "^4.5.2",
"uri-templates": "^0.2.0"
},
"devDependencies": {
"c8": "^10.0.0",
"glob": "^11.0.0",
"mocha": "^10.4.0",
"rdf-ext": "^2.5.1",
"rdf-test": "^0.1.0",
"stream-chunks": "^1.0.0",
"stricter-standard": "^0.3.1"
}
}