forked from fastify/fastify-awilix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "fastify-awilix",
"version": "1.2.1",
"description": "Dependency injection support for fastify framework",
"license": "MIT",
"maintainers": [
{
"name": "Igor Savin",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config=jest.config.json",
"test:coverage": "jest --config=jest.config.json --coverage",
"test:ci": "npm run lint && npm run test:typescript && npm run test:coverage",
"test:typescript": "tsd",
"lint": "eslint \"lib/**/*.js\" lib/index.js",
"prettier": "prettier --write \"{lib,test}/**/*.js\" lib/index.js lib/index.d.ts"
},
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"peerDependencies": {
"awilix": ">=4.0.0",
"fastify": "^3.0.0"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^17.0.21",
"awilix": "^7.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"fastify": "^3.27.4",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"superagent": "^7.1.1",
"tsd": "^0.20.0",
"typescript": "4.6.3"
},
"engines": {
"node": ">=10.16.0"
},
"homepage": "http://github.com/fastify/fastify-awilix",
"repository": {
"type": "git",
"url": "git://github.com/fastify/fastify-awilix.git"
},
"keywords": [
"fastify",
"plugin",
"di",
"dependency-injection",
"dependency",
"injection",
"inversion",
"control",
"awilix"
],
"files": [
"README.md",
"LICENSE",
"lib/*",
"!lib/index.test-d.ts"
]
}