-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.3 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
{
"name": "@retog/sparql-client",
"version": "2.0.0-alpha",
"description": "A minimalistic SPARQL client that uses ext-rdflib to parse RDF responses",
"main": "lib/SparqlEndpoint.js",
"scripts": {
"prepublishOnly": "babel --no-babelrc src --out-dir lib -s --plugins=babel-plugin-add-module-exports --presets=@babel/preset-env",
"pretest": "babel --no-babelrc src --out-dir lib -s --plugins=babel-plugin-add-module-exports --presets=@babel/preset-env",
"test": "mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retog/sparql-client.git"
},
"author": "Reto Gmür <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/retog/sparql-client/issues"
},
"homepage": "https://github.com/retog/sparql-client#readme",
"dependencies": {
"@babel/runtime": "^7.14.0",
"n3": "^1.10.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"@babel/register": "^7.13.16",
"@babel/plugin-transform-arrow-functions": "^7.13.0",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "7.14.1",
"babel-plugin-add-module-exports": "^1.0.4",
"mocha": "^8.4.0"
}
}