-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "event-transmitter",
"version": "2.0.0",
"description": "Transmit events over any stream pipeline.",
"main": "main.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "mocha test/test.js && browserify test/test.js -o test/browser_test_compiled.js && echo '\n Testing in Browser' && mocha-phantomjs -p ./node_modules/.bin/phantomjs test/browser.html"
},
"repository": {
"type": "git",
"url": "https://github.com/arjunmehta/event-transmitter.git"
},
"dependencies": {
"readable-stream": "2.2.3"
},
"devDependencies": {
"brake": "1.0.1",
"browserify": "9.0.3",
"chai": "2.1.0",
"eslint": "6.5.1",
"eslint-config-standard": "7.0.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "2.1.1",
"mocha": "2.1.0",
"mocha-phantomjs": "4.1.0",
"phantomjs-prebuilt": "2.1.14"
},
"keywords": [
"streams",
"stream",
"events",
"event",
"emit",
"transmit",
"transmitter",
"eventemitter",
"eventtransmitter",
"emitter"
],
"author": "Arjun Mehta",
"license": "MIT",
"bugs": {
"url": "https://github.com/arjunmehta/event-transmitter/issues"
},
"homepage": "https://github.com/arjunmehta/event-transmitter"
}