-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "sparql-result-converter",
"version": "3.1.0",
"description": "Little utility function to that converts the table-like result of a SPARQL query into a JSON tree with a user-defined structure",
"scripts": {
"clean": "rimraf dist && rimraf *.tsbuildinfo",
"build": "tsc --project tsconfig.build.json",
"test": "npm run lint && npm run coverage",
"test:only": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc npm run test:only",
"lint": "eslint src tests/**/* --ext .ts",
"prepublishOnly": "npm run lint && npm run coverage && npm run build"
},
"files": [
"dist/**/*"
],
"main": "./dist/SparqlResultConverter.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aljoshakoecher/sparql-result-converter.git"
},
"keywords": [
"SPARQL",
"OWL",
"ontologies",
"SPARQL-Query",
"SPARQL-Result",
"rdf4j",
"json"
],
"author": "Aljosha Koecher",
"license": "MIT",
"bugs": {
"url": "https://github.com/aljoshakoecher/sparql-result-converter/issues"
},
"homepage": "https://github.com/aljoshakoecher/sparql-result-converter#readme",
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.groupby": "^4.6.0",
"lodash.isempty": "^4.4.0"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/lodash.isempty": "^4.4.6",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.1.2",
"eslint": "^8.56.0",
"mocha": "^6.1.3",
"nyc": "^17.0.0",
"rimraf": "^5.0.8",
"ts-node": "^8.10.2",
"typescript": "5.3.2"
}
}