-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
52
53
{
"name": "isemitter",
"version": "1.1.3",
"description": "Event Emitter for your FE with event groups",
"main": "dist/event-emitter.js",
"repository": {
"type": "git",
"url": "https://github.com/Shalimov/emitter.git"
},
"directories": {
"test": "test"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-strip-comments": "^1.0.1",
"gulp-uglify": "^1.5.1",
"mocha": "^2.3.3",
"should": "^7.1.1",
"sinon": "^1.17.2",
"vinyl-buffer": "^1.0.0"
},
"scripts": {
"build": "gulp",
"test": "gulp && ./node_modules/mocha/bin/mocha --require should --recursive",
"upDocs": "jsdoc2md event-emitter.js > README.md && git add . && git commit -am 'Updated Readme.md' && git push origin master"
},
"homepage": "https://github.com/Shalimov/emitter",
"keywords": [
"pubsub",
"emitter",
"listener",
"observer",
"trigger",
"events",
"event",
"angular",
"client",
"groups",
"event-driven",
"flow",
"event-emitter",
"eventemitter",
"signal",
"fire",
"catch",
"handle",
"listener"
],
"author": "Igor Shalimov",
"license": "ISC"
}