-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 928 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
{
"name": "fastify-oracle",
"version": "5.0.0",
"description": "A plugin for Fastify to provide Oracle DB connections",
"main": "plugin.js",
"scripts": {
"pretest": "npm run lint",
"test": " tap --cov test/*.test.js",
"lint": "standard --fix | snazzy"
},
"precommit": [
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cemremengu/fastify-oracle.git"
},
"keywords": [
"fastify",
"oracle"
],
"author": "Cemre Mengu <cemremengu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cemremengu/fastify-oracle/issues"
},
"homepage": "https://github.com/cemremengu/fastify-oracle#readme",
"devDependencies": {
"fastify": "^2.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap": "^12.5.1"
},
"dependencies": {
"fastify-plugin": "^1.5.0",
"oracledb": "^3.1.1"
}
}