-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 792 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 792 Bytes
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
{
"author": "leslie",
"dependencies": {
"lodash": "^4.17.20"
},
"description": "a subscribe-publish library",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@rollup/plugin-babel": "^5.2.3",
"rollup": "^2.38.4",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-terser": "^7.0.2"
},
"keywords": [
"javascript",
"publish",
"subscribe",
"pub-sub",
"queue"
],
"license": "MIT",
"main": "dist/evt.cjs.js",
"module": "dist/evt.esm.js",
"name": "queue-evt",
"repository": {
"type": "git",
"url": "https://github.com/LeslieHoward/evt.git"
},
"scripts": {
"build": "rollup -c rollup.config.js"
},
"unpkg": "dist/evt.js",
"version": "0.2.2"
}