-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
108 lines (108 loc) · 2.88 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
{
"name": "rdfxml-streaming-parser",
"version": "2.4.0",
"description": "Streaming RDF/XML parser",
"keywords": [
"rdf/xml",
"streaming",
"parser",
"xml",
"rdfjs",
"rdf",
"linked data"
],
"main": "index.js",
"typings": "index",
"repository": "[email protected]:rdfjs/rdfxml-streaming-parser.js.git",
"author": "Ruben Taelman <[email protected]>",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/rubensworks/"
},
"bugs": {
"url": "https://github.com/rdfjs/rdfxml-streaming-parser.js/issues"
},
"homepage": "https://github.com/rdfjs/rdfxml-streaming-parser.js#readme",
"license": "MIT",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map",
"index.d.ts",
"index.js.map",
"index.js"
],
"pre-commit": [
"build",
"lint",
"test"
],
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/minimist": "^1.2.0",
"@types/sax": "^1.0.1",
"arrayify-stream": "^2.0.0",
"coveralls": "^3.0.0",
"jest": "^29.0.0",
"jest-rdf": "^1.7.0",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"rdf-quad": "^1.5.0",
"rdf-test-suite": "^1.13.4",
"streamify-array": "^1.0.0",
"streamify-string": "^1.0.1",
"ts-jest": "^29.0.0",
"ts-loader": "^9.3.1",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^5.1.3",
"webpack": "^5.73.0",
"webpack-cli": "^5.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
},
"setupFilesAfterEnv": [
"jest-rdf"
],
"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}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint index.ts lib/**/*.ts test/**/*.ts --exclude '**/*.d.ts'",
"build": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"spec": "rdf-test-suite spec/parser.js https://www.w3.org/2013/RDFXMLTests/manifest.ttl -c .rdf-test-suite-cache/ -o summary",
"spec-earl": "rdf-test-suite spec/parser.js https://www.w3.org/2013/RDFXMLTests/manifest.ttl -c .rdf-test-suite-cache/ -o earl -p spec/earl-meta.json > earl.ttl",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@rdfjs/types": "*",
"@types/readable-stream": "^2.3.13",
"buffer": "^6.0.3",
"rdf-data-factory": "^1.1.0",
"relative-to-absolute-iri": "^1.0.0",
"readable-stream": "^4.4.2",
"@rubensworks/saxes": "^6.0.1",
"validate-iri": "^1.0.0"
},
"sideEffects": false
}