-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 846 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
{
"name": "fastify-arangodb",
"version": "4.0.0",
"description": "Fastify ArangoDB plugin",
"main": "index.js",
"scripts": {
"pretest": "node test/setup.js",
"test": "tap test/test.js --coverage",
"posttest": "tap --coverage-report=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timmak/fastify-arangodb.git"
},
"keywords": [
"fastify",
"arangodb",
"database"
],
"author": "Tim Pinington",
"bugs": {
"url": "https://github.com/timmak/fastify-arangodb/issues"
},
"homepage": "https://github.com/timmak/fastify-arangodb#readme",
"license": "ISC",
"dependencies": {
"fastify-plugin": "^1.2.0"
},
"devDependencies": {
"arangojs": "^6.11.1",
"fastify": "2.10.0",
"tap": "14.6.5"
},
"peerDependencies": {
"arangojs": "^6.11.1"
}
}