-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "ee-proxy",
"description": "Event emitter proxy for easy local listeners cleanup",
"version": "0.5.1",
"author": {
"name": "Dmitry Kirilyuk",
"email": "gk.joker@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Jokero/ee-proxy.git"
},
"license": "MIT",
"keywords": [
"events",
"event",
"eventemitter",
"emitter",
"cleanup",
"listeners",
"proxy",
"ultron"
],
"engines": {
"node": ">=6.0.0"
},
"main": "./lib/ee-proxy.js",
"files": [
"dist/",
"lib/",
"examples/",
"LICENSE",
"README.md"
],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"browserify": "16.2.3",
"uglify-js": "3.4.9",
"chai": "4.2.0",
"mocha": "5.2.0"
},
"scripts": {
"test": "mocha 'tests/**/*.js'",
"babelify": "babel src --presets es2015 --out-dir lib",
"browserify": "browserify ./lib/ee-proxy.js --standalone emitterProxy --outfile dist/ee-proxy.js",
"minify": "uglifyjs dist/ee-proxy.js --output dist/ee-proxy.min.js",
"build": "npm run babelify && npm run browserify && npm run minify"
},
"runkitExampleFilename": "examples/index.js"
}