-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.48 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": "@foxify/events",
"version": "2.1.0",
"description": "A high performance EventEmitter alternative for Node.js and browser",
"author": {
"name": "Ardalan Amini",
"email": "ardalanamini22@gmail.com",
"url": "https://ardalanamini.com"
},
"license": "MIT",
"homepage": "https://github.com/foxifyjs/events#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/foxifyjs/events.git"
},
"bugs": {
"url": "https://github.com/foxifyjs/events/issues"
},
"keywords": [
"event",
"events",
"emitter",
"EventEmitter",
"EventEmitter2",
"EventEmitter3",
"addEventListener",
"addListener",
"emit",
"emits",
"once"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- --watch",
"lint": "eslint src __tests__",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run test:coverage -- --ci",
"benchmarks": "find benchmarks -maxdepth 1 -name '*.js' -exec benchmarks/start.sh {} \\;"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-plugin-jest": "^25.7.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"workspaces": [
"benchmarks"
]
}