-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "@dharmax/semantika",
"version": "0.7.7",
"description": "A very friendly and tight semantic-graph database layer inspired by OWL and RDF over mongodb",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"build": "npx tsc",
"prepublish": "npx tsc",
"test": "npx mocha --require ts-node/register/transpile-only tests/basic.spec.ts"
},
"keywords": [
"database",
"graph",
"rdf",
"owl",
"semantic",
"agnostic",
"ontology"
],
"author": "avi tshuva, dharmax",
"repository": {
"type": "git",
"url": "git+https://github.com/dharmax/semantix.git"
},
"dependencies": {
"joi": "^17.4.0",
"mongodb": "^3.6.6",
"short-uuid": "^4.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/mongodb": "^3.5.33",
"@types/node": "^14.14.6",
"ts-node": "^9.1.1",
"chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.3",
"chai-as-promised": "^7.1.1",
"mocha": "^8.2.1",
"typescript": "^4.2.4"
},
"licenses": [
{
"type": "ISC"
}
],
"engines": {
"node": ">14.0.0"
}
}