-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.81 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
{
"name": "first-di",
"version": "3.1.0",
"author": "Eugene Labutin",
"license": "MIT",
"homepage": "https://github.com/LabEG/first-di#readme",
"description": "Easy dependency injection for typescript applications",
"main": "./dist/index.js",
"type": "module",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": " [email protected]:LabEG/first-di.git"
},
"bugs": {
"url": "https://github.com/LabEG/first-di/issues"
},
"lint-staged": {
"./tests/**/*.(ts|tsx|js|jsx)": [
"eslint --fix -c .eslintrc.js --ext .tsx,.ts,.jsx,.js"
]
},
"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",
"release": "cliff-jumper --name '@labeg/code-style' --package-path '.' --no-skip-changelog --no-skip-tag",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"prepare": "husky install"
},
"peerDependencies": {
"reflect-metadata": ">=0.1.0"
},
"devDependencies": {
"@labeg/code-style": "^4.4.0",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"ts-node": "^10.9.2",
"reflect-metadata": "^0.2.2",
"typescript": "^5.6.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"@favware/cliff-jumper": "^4.1.0"
},
"keywords": [
"dependency injection",
"di",
"ioc"
]
}