-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.55 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@piggly/event-bus",
"version": "2.1.2",
"description": "An ESM/CommonJS library following Oriented-Object Programming pattern to manager an Event Bus.",
"scripts": {
"check": "tsc --noEmit",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json && node ./fixESM.cjs",
"build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json && tsc-alias -p tsconfig.types.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts --ignore-path .gitignore --fix src",
"test": "cross-env NODE_ENV=test jest --coverage --watchAll",
"test:once": "cross-env NODE_ENV=test jest",
"test:debug": "cross-env NODE_ENV=test node --inspect ./node_modules/.bin/jest --runInBand",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run format && npm run lint",
"prepare": "npm run build"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"event-bus",
"events",
"handlers"
],
"author": {
"name": "Caique Araujo",
"email": "[email protected]",
"url": "https://github.com/caiquearaujo"
},
"license": "MIT",
"homepage": "https://github.com/piggly-dev/js-event-bus#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/piggly-dev/js-event-bus.git"
},
"bugs": {
"url": "https://github.com/piggly-dev/js-event-bus/issues"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tslib": "^2.6.3",
"typescript": "^4.9.5"
},
"dependencies": {
"uuid": "^9.0.1"
}
}