-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (59 loc) · 1.42 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
{
"name": "evemin",
"version": "2.0.0",
"description": "Modern and blazing fast event emitter",
"types": "src/index.d.ts",
"main": "dist/evemin.js",
"module": "dist/evemin.module.js",
"umd:main": "dist/evemin.umd.js",
"source": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"test": "jest",
"perf": "ts-node perf.ts",
"clean": "rm -rf dist",
"build": "yarn clean && microbundle build --raw --target web --generateTypes false",
"dev": "microbundle watch --raw --format cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/re-js/evemin.git"
},
"keywords": [
"event",
"event emitter",
"fast",
"blazing fast",
"typescript",
"zero-cost abstraction",
"high performance",
"lightweight",
"super small"
],
"author": "Slava Bereza <mail@betula.co> (http://betula.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/re-js/evemin/issues"
},
"homepage": "https://github.com/re-js/evemin#readme",
"devDependencies": {
"@types/jest": "28.1.6",
"jest": "28.1.3",
"microbundle": "0.15.1",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"browser": "./dist/evemin.module.js",
"umd": "./dist/evemin.umd.js",
"import": "./dist/evemin.mjs",
"require": "./dist/evemin.js"
}
}
}