-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.27 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
60
61
62
63
64
65
66
67
68
{
"name": "@innotrade/enapso-graphdb-cli",
"version": "1.3.25",
"description": "ENAPSO Graph Databases Command Line Interface",
"main": "index.js",
"bin": {
"enapsogdb": "./index.js"
},
"scripts": {
"test": "mocha --timeout 10000 --baseURL 'http://localhost:7200' --triplestore 'graphdb' --username 'admin' --password 'root'",
"test:fuseki": "mocha --timeout 10000 --baseURL 'http://localhost:3030' --triplestore 'fuseki' --username 'admin' --password 'admin'",
"test:stardog": "mocha --timeout 10000 --baseURL 'http://localhost:5820' --triplestore 'stardog' --username 'admin' --password 'admin'",
"test:graphdb": "mocha --timeout 10000 --baseURL 'http://localhost:7200' --triplestore 'graphdb' --username 'admin' --password 'root'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/innotrade/enapso-graphdb-cli.git"
},
"keywords": [
"enapso",
"ontotext",
"graphdb",
"stardog",
"fuseki",
"triplestore",
"graphdatabase",
"owl",
"rdf",
"sparql",
"ontology",
"knowledgegraph",
"command line interface",
"cli"
],
"author": "Alexander Schulze",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/innotrade/enapso-graphdb-cli/issues"
},
"homepage": "https://github.com/innotrade/enapso-graphdb-cli#readme",
"dependencies": {
"@innotrade/enapso-config": "^1.3.3",
"@innotrade/enapso-graphdb-admin": "^1.5.8",
"@innotrade/enapso-graphdb-client": "^1.9.3",
"axios": "1.1.3",
"chai": "^4.3.7",
"child_process": "^1.0.2",
"command-line-args": "^5.2.1",
"mocha": "^10.2.0",
"stream": "^0.0.2"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.2.5"
},
"pkg": {
"assets": [
"node_modules/axios/**/*"
]
}
}