-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "graphdb-utils",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "mocha tests/index.ts --require ts-node/register --exit",
"postinstall": "tsc --project tsconfig.json",
"build": "tsc --project tsconfig.json",
"build:docs": "typedoc --entryPoints src/index.ts --out docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csse-uoft/graphdb-utils.git"
},
"author": "Lester Lyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/csse-uoft/graphdb-utils/issues"
},
"homepage": "https://github.com/csse-uoft/graphdb-utils#readme",
"dependencies": {
"form-data": "^4.0.0",
"graphdb": "^3.0.4",
"mongoose": "^7.6.13",
"node-fetch": "^3.3.0",
"redis": "^4.6.4",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7"
},
"engines": {
"node": ">=16.0.0"
}
}