-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.21 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",
"id": "event",
"version": "1.0.0",
"description": "Functional reactive style events",
"keywords": [
"event",
"reduce",
"reducible",
"stream",
"signal"
],
"author": "Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com)",
"homepage": "https://github.com/Gozala/event",
"repository": {
"type": "git",
"url": "https://github.com/Gozala/event.git",
"web": "https://github.com/Gozala/event"
},
"bugs": {
"url": "http://github.com/Gozala/event/issues/"
},
"devDependencies": {
"test": "~0.6.0",
"phantomify": "~0.x.0",
"repl-utils": "~2.0.1",
"reducers": "~2.0.0",
"buffer-reduce": "~0.1.0",
"cache-reduce": "~0.1.1",
"eventual": "~1.0.0"
},
"main": "./event.js",
"scripts": {
"repl": "node node_modules/repl-utils",
"test": "npm run test-node && npm run test-browser",
"test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/index.js",
"test-node": "node ./test/index.js",
"postinstall": "npm dedup"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Gozala/event/License.md"
}
],
"dependencies": {
"method": "~1.0.0",
"reducible": "~1.0.1"
}
}