-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.64 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
59
{
"name": "json-rql",
"version": "0.6.3",
"description": "JSON RDF Query Language: a JSON-LD based SPARQL serialisation",
"main": "spec/index.js",
"types": "spec/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf _site",
"prebuild": "cd sparql && npm install && npm link ../ && cd ..",
"build": "run-s clean compile schema test doc",
"compile": "tsc",
"test": "npm run unit test",
"unit": "node test/pretest.js && mocha",
"prepublishOnly": "npm run build && npm --no-git-tag-version version $VERSION",
"postpublish": "export JRQLVER=$npm_package_version && cd sparql && npm publish && cd .. && git commit -a -m \"v\"$JRQLVER && git push",
"schema": "node genschema.js",
"doc": "typedoc spec/index.ts && cp spec/schema.json _site"
},
"files": [
"spec/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gsvarovsky/json-rql.git"
},
"keywords": [
"json",
"sparql",
"rdf",
"json-ld",
"semantic web"
],
"author": "George Svarovsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/gsvarovsky/json-rql/issues"
},
"homepage": "https://json-rql.org/",
"dependencies": {
"@types/jsonld": "^1.5.2"
},
"devDependencies": {
"@m-ld/typedoc-theme": "^0.1.4",
"ajv": "^6.12.6",
"chai": "^4.2.0",
"download-git-repo": "^3.0.2",
"json-stringify-pretty-compact": "^2.0.0",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"object-hash": "^2.1.1",
"typedoc": "^0.19.2",
"typescript": "^4.1.6",
"typescript-json-schema": "^0.45.1"
},
"runkitExampleFilename": "sparql/example.js"
}