-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 2.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@ukitgroup/ioc",
"version": "0.0.0-dev",
"description": "Declarative and simple IoC container",
"main": "dist/index.js",
"scripts": {
"build": "tsc --skipLibCheck -p tsconfig.build.json",
"prebuild": "rimraf ./dist",
"lint": "eslint --ignore-path .gitignore \"**/*.{js,ts}\"",
"lint:fix": "eslint --fix --ignore-path .gitignore \"**/*.{js,ts}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"report-coverage": "cat coverage/lcov.info | coveralls",
"semantic-release": "semantic-release"
},
"author": "Goodluckhf <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Goodluckhf/IoC-container.git"
},
"keywords": [
"ioc",
"di",
"dependency injection",
"inverse of control"
],
"bugs": {
"url": "https://github.com/Goodluckhf/IoC-container/issues"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/Goodluckhf/IoC-container#readme",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.7.1",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^2.0.0",
"coveralls": "^3.0.4",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.1.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.20",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --ignore-path .gitignore",
"prettier --write",
"git add"
]
},
"dependencies": {
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"eerror": "2.0.1",
"reflect-metadata": "^0.1.13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
}
]
}
},
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"files": [
"dist/**/*.*",
"!dist/**/*.test.*"
]
}