-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
125 lines (125 loc) · 4.13 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
{
"name": "rdf-parse",
"version": "4.0.0",
"description": "Parses RDF from any serialization",
"lsd:module": true,
"keywords": [
"rdf",
"parse",
"stream",
"rdfjs",
"linked data"
],
"main": "lib/index.js",
"typings": "lib/index",
"repository": "[email protected]:rubensworks/rdf-parse.js.git",
"author": "Ruben Taelman <[email protected]>",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/rubensworks/"
},
"bugs": {
"url": "https://github.com/rubensworks/rdf-parse.js/issues"
},
"homepage": "https://github.com/rubensworks/rdf-parse.js#readme",
"license": "MIT",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map",
"config",
"components",
"engine-default.js"
],
"pre-commit": [
"build",
"lint",
"test"
],
"devDependencies": {
"@comunica/runner": "^4.0.1",
"@types/jest": "^29.0.0",
"@types/n3": "^1.10.4",
"arrayify-stream": "^1.0.0",
"componentsjs-generator": "^4.2.0",
"jest": "^29.0.0",
"jest-rdf": "^1.7.0",
"manual-git-changelog": "^1.0.1",
"pre-commit": "^1.2.2",
"rdf-dereference": "^2.1.0",
"rdf-quad": "^1.5.0",
"rdf-test-suite": "^1.25.0",
"streamify-string": "^1.0.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^4.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"scripts": {
"test": "jest ${1} --forceExit",
"test-watch": "jest ${1} --watch",
"lint": "tslint lib/index.ts lib/**/*.ts test/**/*.ts --exclude '**/*.d.ts'",
"build": "rm -rf lib/mediaMappings.* && npm run build:mediaMappings && npm run build:ts && npm run build:components",
"build:ts": "tsc",
"build:mediaMappings": "ts-node scripts/getMediaMappings",
"build:components": "componentsjs-generator",
"browser": "webpack --config webpack.config.js --mode development",
"validate": "npm ls",
"prepare": "npm run build && comunica-compile-config config/config-default.json urn:comunica:default:Runner > engine-default.js",
"version": "manual-git-changelog onversion",
"spec": "npm run spec-jsonld-html",
"spec-earl": "npm run spec-earl-jsonld-html",
"spec-jsonld-html": "rdf-test-suite spec/parser.js https://w3c.github.io/json-ld-api/tests/html-manifest.jsonld -c .rdf-test-suite-cache/",
"spec-earl-jsonld-html": "rdf-test-suite spec/parser.js https://w3c.github.io/json-ld-api/tests/html-manifest.jsonld -c .rdf-test-suite-cache/ -o earl -p spec/earl-meta.json > spec/earl-jsonld-html.ttl",
"spec-clean": "rm -r .rdf-test-suite-cache/"
},
"dependencies": {
"@comunica/actor-http-fetch": "^4.0.1",
"@comunica/actor-http-proxy": "^4.0.1",
"@comunica/actor-rdf-parse-html": "^4.0.1",
"@comunica/actor-rdf-parse-html-microdata": "^4.0.1",
"@comunica/actor-rdf-parse-html-rdfa": "^4.0.1",
"@comunica/actor-rdf-parse-html-script": "^4.0.1",
"@comunica/actor-rdf-parse-jsonld": "^4.0.1",
"@comunica/actor-rdf-parse-n3": "^4.0.1",
"@comunica/actor-rdf-parse-rdfxml": "^4.0.1",
"@comunica/actor-rdf-parse-shaclc": "^4.0.1",
"@comunica/actor-rdf-parse-xml-rdfa": "^4.0.1",
"@comunica/bus-http": "^4.0.1",
"@comunica/bus-init": "^4.0.1",
"@comunica/bus-rdf-parse": "^4.0.1",
"@comunica/bus-rdf-parse-html": "^4.0.1",
"@comunica/config-query-sparql": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/mediator-combine-pipeline": "^4.0.1",
"@comunica/mediator-combine-union": "^4.0.1",
"@comunica/mediator-number": "^4.0.1",
"@comunica/mediator-race": "^4.0.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2",
"readable-stream": "^4.5.2",
"stream-to-string": "^1.2.1"
}
}