-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "@atomgraph/sparql-builder",
"author": "Martynas Jusevičius <[email protected]> (https://github.com/AtomGraph)",
"license": "Apache-2.0",
"version": "1.2.1",
"keywords": [
"sparql",
"rdf",
"query",
"builder",
"query-builder"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AtomGraph/sparql-builder.git"
},
"bugs": {
"url": "https://github.com/AtomGraph/sparql-builder/issues"
},
"main": "./dist/node/SPARQLBuilder.js",
"types": "./dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"scripts": {
"build": "tsc --declaration",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"dependencies": {
"@types/sparqljs": "^2.1.0",
"sparqljs": "^2.1.0"
},
"devDependencies": {
"chai": "4.1.x",
"mocha": "4.1.x",
"sparqljs": "^2.1.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
},
"description": "SPARQL query builder written in TypeScript. Can be used from both TypeScript and JavaScript, although type-safety is lost in JavaScript.",
"homepage": "https://github.com/AtomGraph/sparql-builder",
"directories": {
"test": "test"
}
}