-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 867 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": "fpdi",
"version": "1.4.0",
"description": "Minimalistic dependency injection module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"dev": "tsc -w",
"build": "tsc"
},
"keywords": [
"di",
"dependency",
"injection",
"typescript",
"ioc"
],
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/georgyfarniev/fpdi"
},
"author": "Georgy Farniev",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.5.0",
"typescript": "^3.9.7",
"@babel/preset-env": "^7.10.4",
"jest": "^26.1.0"
},
"dependencies": {}
}