-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.22 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
{
"name": "rdf-transform-graph-imports",
"version": "0.2.4",
"description": "Stream transform which fetches and merges multiple RDF resources/documents",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .ts --quiet --ignore-path .gitignore .",
"test": "mocha",
"prepare": "husky install",
"prepack": "tsc",
"release": "changeset publish"
},
"files": [
"CHANGELOG.md",
"*.js",
"*.d.ts",
"lib/*.js",
"lib/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zazuko/rdf-transform-graph-imports.git"
},
"keywords": [
"rdf",
"stream",
"merge",
"resource",
"fetch"
],
"author": "Zazuko GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/rdf-transform-graph-imports/issues"
},
"homepage": "https://github.com/zazuko/rdf-transform-graph-imports#readme",
"dependencies": {
"anylogger": "^1.0.11",
"readable-stream": "3 - 4",
"through2": "^4.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rdfjs-elements/formats-pretty": "^0.6.4",
"@rdfjs/express-handler": "^2.0.0",
"@rdfjs/types": "^1.1.0",
"@tpluscode/eslint-config": "^0.4.4",
"@types/absolute-url": "^2.0.0",
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.8",
"@types/express": "^4.17.20",
"@types/is-uri": "^1.0.2",
"@types/mocha": "^10.0.3",
"@types/rdfjs__express-handler": "^2.0.3",
"@types/readable-stream": "^4.0.4",
"@types/through2": "^2.0.40",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@zazuko/env-node": "^1.0.2",
"absolute-url": "^2.0.0",
"c8": "^8.0.1",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint-import-resolver-typescript": "^3.6.1",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.js": [
"eslint --fix --quiet"
]
},
"mocha": {
"extension": "ts",
"loader": "ts-node/esm",
"require": [
"test/mocha-setup.cjs"
]
}
}