-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "sparqlalgebrajs",
"version": "4.3.8",
"description": "Convert SPARQL to SPARQL algebra",
"author": "Joachim Van Herwegen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joachimvh/SPARQLAlgebra.js"
},
"bin": "./bin/sparqlalgebrajs.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"dependencies": {
"@rdfjs/types": "*",
"@types/sparqljs": "^3.1.3",
"fast-deep-equal": "^3.1.3",
"minimist": "^1.2.6",
"rdf-data-factory": "^1.1.0",
"rdf-isomorphic": "^1.3.0",
"rdf-string": "^1.6.0",
"rdf-terms": "^1.10.0",
"sparqljs": "^3.7.1"
},
"devDependencies": {
"@tsconfig/node12": "^12.0.0",
"@types/jest": "^28.1.8",
"@types/minimist": "^1.2.2",
"@types/node": "^22.0.0",
"chai": "^5.0.0",
"jest": "^28.1.3",
"pre-commit": "^1.2.2",
"ts-jest": "^28.0.8",
"typescript": "^5.0.0"
},
"pre-commit": [
"test"
],
"files": [
"index.js",
"index.d.ts",
"index.js.map",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.js.map",
"bin/**/*.js",
"bin/**/*.js.map"
],
"main": "index.js"
}