-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "hklib",
"version": "5.4.1",
"main": "dist/index.js",
"author": "IBM Research",
"types": "dist/index.d.ts",
"contributors": [
{
"name": "Marcelo Machado",
"email": "[email protected]"
},
{
"name": "Marcio Moreno",
"email": "[email protected]"
},
{
"name": "Rodrigo Costa",
"email": "[email protected]"
},
{
"name": "Wallas Santos",
"email": "[email protected]"
},
{
"name": "Vítor Lourenço",
"email": "[email protected]"
},
{
"name": "Elton Soares",
"email": "[email protected]"
},
{
"name": "Sandro Rama Fiorini",
"email": "[email protected]"
},
{
"name": "Henrique Chaves Magalhães de Menezes",
"email": "[email protected]"
}
],
"dependencies": {
"amqp-connection-manager": "~3.7.0",
"amqplib": "^0.8.0",
"axios": "^0.26.1",
"body-parser": "^1.19.0",
"ebnf": "^1.9.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"nearley": "^2.20.1",
"netcat": "^1.5.0",
"ninja-util": "^1.3.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"shortid": "^2.2.14"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ibm-hyperknowledge/hklib"
},
"keywords": [
"hyperknowledge",
"hk",
"hyperlinkedgraph",
"graph",
"driver"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist; tsc; ./prepend-copyright-notice-d-ts.sh; cp index.d.ts.tocopy dist/index.d.ts",
"integration-tests": "mocha test/integration test/integration/setup.json --timeout 360000 --forbid-only",
"unit-tests": "mocha test/unit --timeout 360000 --forbid-only",
"tests": "npm run unit-tests && npm run integration-tests"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"tslib": "^2.3.0",
"typescript": "^4.5.5"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js"
},
"files": [
"/dist"
]
}