-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "injective-module",
"version": "0.0.1",
"description": "This package provides dependency injection functionality to your project and modules syntax",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"prepare": "husky install",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorbezsmertnyi/injective-module.git"
},
"keywords": [
"dependecy",
"injection",
"DI",
"typescript",
"TS",
"modules"
],
"author": "Igor Bezsmertnyi <bezsmertnyi.igor@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/igorbezsmertnyi/injective-module/issues"
},
"homepage": "https://github.com/igorbezsmertnyi/injective-module#readme",
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"chai": "^4.3.4",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}