summaryrefslogtreecommitdiff
path: root/node_modules/@vladfrangu/async_event_emitter/package.json
blob: bb9534fb0983a8d2ac6319ca82e5c59e40aa08a0 (plain) (blame)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
  "name": "@vladfrangu/async_event_emitter",
  "version": "2.2.2",
  "description": "An event emitter implementation with async support in mind",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "browser": "./dist/index.global.js",
  "unpkg": "./dist/index.global.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "sideEffects": false,
  "author": "Vlad Frangu <kingdgrizzle@gmail.com>",
  "license": "MIT",
  "scripts": {
    "lint": "eslint src tests --ext ts --fix",
    "format": "prettier --write \"{src,tests}/**/*.ts\"",
    "docs": "typedoc",
    "test": "vitest run",
    "test:watch": "vitest",
    "update": "yarn upgrade-interactive",
    "build": "tsup && tsc -b src",
    "clean": "node scripts/clean.mjs",
    "typecheck": "tsc -p tsconfig.typecheck.json",
    "bump": "cliff-jumper",
    "check-update": "cliff-jumper --dry-run",
    "_postinstall": "husky install .github/husky",
    "prepack": "rollup-type-bundler && pinst --disable",
    "postpack": "pinst --enable"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.4.4",
    "@commitlint/config-conventional": "^17.4.4",
    "@favware/cliff-jumper": "^1.10.0",
    "@favware/npm-deprecate": "^1.0.7",
    "@favware/rollup-type-bundler": "^2.0.0",
    "@sapphire/eslint-config": "^4.3.8",
    "@sapphire/prettier-config": "^1.4.5",
    "@sapphire/ts-config": "^3.3.4",
    "@typescript-eslint/eslint-plugin": "^5.52.0",
    "@typescript-eslint/parser": "^5.52.0",
    "@vitest/coverage-c8": "^0.28.5",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.34.0",
    "eslint-config-prettier": "^8.6.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.3",
    "lint-staged": "^13.1.2",
    "pinst": "^3.0.0",
    "prettier": "^2.8.4",
    "pretty-quick": "^3.1.3",
    "tsup": "^6.6.3",
    "typedoc": "^0.23.25",
    "typedoc-plugin-mdn-links": "^2.0.2",
    "typescript": "^4.9.5",
    "vitest": "^0.28.5"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vladfrangu/async_event_emitter.git"
  },
  "files": [
    "dist",
    "!dist/*.tsbuildinfo",
    "THIRD_PARTY_LICENSE.md"
  ],
  "engines": {
    "node": ">=v14.0.0",
    "npm": ">=7.0.0"
  },
  "keywords": [
    "event emitter",
    "async",
    "event",
    "emitter"
  ],
  "bugs": {
    "url": "https://github.com/vladfrangu/async_event_emitter/issues"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "prettier": "@sapphire/prettier-config",
  "resolutions": {
    "ansi-regex": "^5.0.1",
    "minimist": "^1.2.6"
  },
  "packageManager": "yarn@3.2.1"
}