forked from retog/sparql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.33 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": "1.1.0",
"description": "A minimalistic SPARQL client that uses ext-rdflib to parse RDF responses",
"main": "lib/SparqlEndpoint.js",
"scripts": {
"prepublishOnly": "cross-var \"npm i && 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": "node_modules/.bin/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": {
"ext-rdflib": "^0.5.5",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"babel-plugin-add-module-exports": "^1.0.2",
"cross-var": "^1.1.0",
"mocha": "^6.2.1"
}
}