-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 1.59 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
{
"name": "event-lite",
"description": "Light-weight EventEmitter (less than 1KB when gzipped)",
"version": "1.0.0",
"author": "@kawanet",
"bugs": {
"url": "https://github.com/kawanet/event-lite/issues"
},
"contributors": [
"Joshua Wise <[email protected]>"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"assert": "^1.5.1",
"jsdoc": "^4.0.4",
"jshint": "^2.13.6",
"mocha": "^11.0.1",
"rollup": "^4.28.1",
"terser": "^5.37.0"
},
"exports": {
"types": "./event-lite.d.ts",
"import": "./event-lite.mjs",
"require": "./event-lite.js"
},
"files": [
"browser/import.js",
"dist/event-lite.min.js",
"event-lite.d.ts",
"event-lite.js",
"event-lite.mjs"
],
"homepage": "https://github.com/kawanet/event-lite",
"jshintConfig": {
"bitwise": true,
"browser": true,
"eqeqeq": true,
"mocha": true,
"noarg": true,
"nocomma": true,
"node": true,
"nonbsp": true,
"nonew": true,
"regexp": true,
"undef": true,
"unused": true
},
"keywords": [
"browser",
"emitter",
"event",
"eventlistener",
"fire",
"trigger"
],
"license": "MIT",
"main": "event-lite.js",
"repository": {
"type": "git",
"url": "https://github.com/kawanet/event-lite.git"
},
"scripts": {
"build": "make clean all",
"fixpack": "fixpack",
"prepack": "npm run build && npm test",
"test": "make test"
},
"type": "commonjs",
"typings": "event-lite.d.ts"
}