-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "emitter-js",
"description": "A modern event emitter implementation.",
"version": "2.0.2",
"repository": "https://github.com/jeffrose/emitter.git",
"homepage": "https://github.com/jeffrose/emitter",
"bugs": "https://github.com/jeffrose/emitter/issues",
"author": "Jeff Rose <jeff_rose@outlook.com> (http://github.com/jeffrose)",
"license": "Apache-2.0",
"keywords": [
"emitter",
"eventemitter",
"event",
"events",
"es6",
"es2015"
],
"main": "index.js",
"files": [
"docs",
"dist"
],
"scripts": {
"trace": "node --allow-natives-syntax --trace_opt --trace_deopt test/trace.js"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"bower": "^1.8.8",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^2.4.2",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-bench": "^1.1.0",
"gulp-debug": "^3.2.0",
"gulp-istanbul": "^1.1.3",
"gulp-jsdoc-to-markdown": "^1.2.2",
"gulp-mocha": "^3.0.1",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"merge-stream": "^1.0.1",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"yarn": "^1.16.0"
},
"engines": {
"node": ">=4.2.3"
}
}