-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@databorg/client",
"version": "1.1.0",
"description": "Highly versatile SPARQL client for modern age",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./react": "./dist/react"
},
"typings": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "vitest watch",
"test:ci": "vitest run --coverage",
"build:declaration": "tsc --emitDeclarationOnly --declaration --declarationDir dist",
"build:compile": "esbuild `find src \\( -name '*.ts*' \\)` --format=cjs --outdir=./dist",
"build": "npm run build:declaration && npm run build:compile"
},
"keywords": [
"sparql",
"rdf",
"client",
"sparql client",
"sparql-client",
"databorg"
],
"author": "Tim Ermilov <[email protected]> (http://databorg.ai/)",
"dependencies": {
"hash.js": "^1.1.7",
"jsonld": "^5.2.0",
"n3": "^1.16.2",
"sparqljs": "^3.5.1"
},
"devDependencies": {
"@databorg/client": "file:./",
"@testing-library/react": "^13.2.0",
"@testing-library/react-hooks": "^8.0.0",
"@types/node": "^17.0.35",
"@types/sparqljs": "^3.1.3",
"c8": "^7.11.3",
"esbuild": "^0.14.39",
"isomorphic-unfetch": "^3.1.0",
"jsdom": "^19.0.0",
"nock": "^13.2.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.6.4",
"vitest": "^0.12.6"
}
}