-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 973 Bytes
/
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
{
"name": "fastify-orientdb",
"version": "0.3.0",
"description": "Fastify orientdb connection plugin",
"main": "index.js",
"scripts": {
"test": "standard && tap test.js",
"orientdb": "docker run -d --name orientdb -p 2424:2424 -p 2480:2480 -e ORIENTDB_ROOT_PASSWORD=admin orientdb"
},
"repository": {
"type": "git",
"url": "[email protected]:mahmed8003/fastify-orientdb.git"
},
"keywords": [
"fastify",
"orientdb",
"graph",
"nosql",
"database",
"connection"
],
"author": "Muhammad Ahmed <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mahmed8003/fastify-orientdb/issues"
},
"homepage": "https://github.com/mahmed8003/fastify-orientdb#readme",
"devDependencies": {
"fastify": "^0.29.0",
"standard": "^10.0.3",
"tap": "^10.7.2"
},
"dependencies": {
"fastify-plugin": "^0.1.1",
"orientjs": "^2.2.7"
},
"engines": {
"node": ">=8.5.0"
}
}