-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 919 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-typeorm-plugin",
"version": "2.2.1",
"description": "Fastify plugin for typeorm",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"unit": "tap test.js",
"test": "npm run lint && npm run unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inthepocket/fastify-typeorm-plugin.git"
},
"keywords": [
"fastify",
"typeorm"
],
"author": "Team Nebula",
"license": "MIT",
"bugs": {
"url": "https://github.com/inthepocket/fastify-typeorm-plugin/issues"
},
"homepage": "https://github.com/inthepocket/fastify-typeorm-plugin#readme",
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"peerDependencies": {
"typeorm": "^0.2.21"
},
"devDependencies": {
"fastify": "^3.0.3",
"pg": "^8.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tap": "^15.0.9"
}
}