-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "rsdi",
"version": "2.4.1",
"description": "Simple dependency injection container for JavaScript/TypeScript",
"scripts": {
"test": "jest",
"test:types": "jest -c jest.config.tsd.js",
"format": "prettier 'src/**/*.ts' --write",
"build": "tsc",
"deploy": "yarn version minor && yarn build && yarn npm publish",
"pre-commit": "lint-staged",
"lint": "yarn eslint src/**/**.ts",
"prettify": "prettier --write --ignore-unknown"
},
"keywords": [
"dependency injection",
"dependency",
"injection",
"ioc",
"container",
"javascript",
"typescript"
],
"files": [
"dist/**"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/radzserg/rsdi",
"author": "Sergey Radzishevskii <[email protected]>",
"license": "ISC",
"lint-staged": {
"src/**/*.ts": [
"prettier --write --ignore-unknown",
"eslint"
]
},
"devDependencies": {
"@tsd/typescript": "^5.0.4",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.2",
"jest": "^29.5.0",
"jest-runner-tsd": "^5.0.0",
"lint-staged": "^11.2.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"tsd": "^0.20.0",
"typescript": "^5.0.4"
}
}