-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
57
58
{
"name": "@vterzic/sparql-builder",
"version": "0.2.0",
"description": "Just a simple SPARQL query builder",
"main": "dist/sparql-builder.js",
"types": "dist/sparql-builder.d.ts",
"author": "Veljko Terzic",
"keywords": [
"SPARQL",
"builder",
"RDF",
"rdf",
"graph",
"Graph",
"javascript",
"typescript"
],
"license": "SEE LICENSE IN LICENSE.md",
"files": [
"/dist"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"test:watch": "mocha -r ts-node/register test/**/*.spec.ts --watch --extension ts",
"compile": "tsc",
"dev": "tsc --watch",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vterzic/sparql-builder.git"
},
"bugs": {
"url": "https://github.com/vterzic/sparql-builder/issues"
},
"homepage": "https://github.com/vterzic/sparql-builder#readme"
}