-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.57 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
{
"name": "brisk-ioc",
"version": "0.1.0",
"description": "fast light brisk ioc/di container on nodejs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "ttsc",
"clear": "rimraf ./lib",
"precompile": "npm run clear",
"postcompile": "copyfiles -u 1 \"./src/**/*\" -e \"./src/**/*.ts\" \"./lib\"",
"prepare": "husky install",
"test": "jest",
"test:staged": "jest --bail --findRelatedTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruixiaozi/brisk-ioc.git"
},
"keywords": [
"fast",
"light",
"brisk",
"ioc",
"di",
"node",
"js",
"spring"
],
"author": "ruixiaozi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruixiaozi/brisk-ioc/issues"
},
"homepage": "https://github.com/ruixiaozi/brisk-ioc#readme",
"dependencies": {
"brisk-log": "0.1.0",
"brisk-ts-extends": "0.1.0"
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@types/jest": "29.2.4",
"@types/node": "16.11.10",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"copyfiles": "2.4.1",
"dirlint": "1.0.1",
"eslint": "8.10.0",
"eslint-config-brisk": "1.0.3",
"husky": "7.0.4",
"jest": "29.3.1",
"lint-staged": "12.3.4",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"ttypescript": "1.5.13",
"typescript": "4.8"
},
"overrides": {
"@jest/expect-utils": "29.4.1"
}
}