-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 KB
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
{
"name": "@fangedhex/eventbus",
"description": "A small typescript library that provide some eventbus system that is \"\"\"easier\"\"\" to use.",
"keywords": [
"typescript",
"eventbus",
"decorator"
],
"repository": {
"type": "git",
"url": "https://github.com/fangedhex/eventbus.git"
},
"version": "1.1.1",
"engines": {
"node": ">=14"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"funding": "https://github.com/fangedhex/eventbus?sponsor=1",
"commitlint": {
"extends": "@commitlint/config-angular"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"scripts": {
"build": "tsc",
"dev": "tsnd --respawn src/index.ts",
"lint": "eslint . --ext ts,js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:dev": "jest --watch --coverage",
"prepublishOnly": "publish-please guard && yarn build",
"docs": "typedoc",
"publish-please": "publish-please",
"semantic-release": "semantic-release"
},
"dependencies": {
"debug": "^4.3.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@semantic-release/git": "^9.0.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-mock-extended": "^1.0.16",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.6",
"typedoc": "^0.20.36",
"typescript": "^4.3.2"
}
}