-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "barnard59-csvw",
"version": "2.2.2",
"description": "Simplifies handling CSVW mapping documents in barnard59 pipelines",
"type": "module",
"main": "index.js",
"scripts": {
"prepare": "npm run prepack:context",
"test": "mocha",
"prepack": "run-p prepack:*",
"prepack:build": "tsc",
"prepack:context": "node --loader ts-node/esm/transpile-only --no-warnings ./build/fetchContext.ts"
},
"files": [
"*.js",
"*.d.ts",
"lib/*.js",
"lib/*.d.ts",
"context.jsonld",
"manifest.ttl"
],
"repository": {
"type": "git",
"url": "git://github.com/zazuko/barnard59.git",
"directory": "packages/csvw"
},
"keywords": [],
"author": "Zazuko GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/barnard59/issues"
},
"homepage": "https://github.com/zazuko/barnard59",
"dependencies": {
"@rdfjs/fetch": "^3.1.1",
"duplex-to": "^1.0.1",
"file-fetch": "^1.7.0",
"jsonld-streaming-parser": "^3.2.0",
"jsonld-context-parser": "^2.3.0",
"node-fetch": "^3.0.0",
"proto-fetch": "^1.0.0",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"barnard59-env": "^1.0.0",
"express-as-promise": "^1.2.0",
"get-stream": "^7.0.1",
"is-stream": "^3.0.0",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">= 14.0.0"
},
"mocha": {
"require": "../../test/mocha-setup.cjs",
"loader": "ts-node/esm"
}
}