forked from LabEG/first-di
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "first-di",
"version": "2.0.0",
"description": "Easy dependency injection for typescript applications",
"main": "./dist/index.js",
"type": "module",
"typings": "./dist/index.d.ts",
"peerDependencies": {
"reflect-metadata": ">=0.1.0"
},
"devDependencies": {
"@labeg/code-style": "^4.0.5",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"reflect-metadata": "^0.2.1",
"typescript": "^5.3.3"
},
"scripts": {
"lint": "eslint --fix -c .eslintrc.cjs --ext .tsx,.ts,.jsx,.js ./src/ ./tests/",
"test": "mocha --reporter spec --require ts-node/register tests/*.test.ts",
"build": "rm -rf dist/ && tsc --project tsconfig.build.json && node ./dist/index.js",
"prepublishOnly": "npm run lint && npm run build && npm run test && npm version patch"
},
"repository": {
"type": "git",
"url": " [email protected]:LabEG/first-di.git"
},
"keywords": [
"dependency injection",
"di",
"ioc"
],
"author": "LabEG",
"license": "MIT"
}