-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "hubjs",
"version": "1.0.6",
"description": "The most advanced EventEmitter for Node and the browser",
"keywords": [
"event",
"emitter",
"listener",
"pubsub"
],
"author": "Maximilian Antoni (http://maxantoni.de)",
"homepage": "https://github.com/mantoni/hub.js",
"main": "./lib/hub.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"watch": "mochify --watch",
"lint": "jslint --edition=latest --color \"**/*.js\"",
"wd": "mochify --wd",
"pretest": "npm run lint",
"test": "echo '# node:' && mocha -R dot && mochify --cover"
},
"repository": {
"type": "git",
"url": "https://github.com/mantoni/hub.js.git"
},
"dependencies": {
"glob-filter": "^1.4",
"async-glob-events": "^1.5",
"inherits": "^2.0"
},
"devDependencies": {
"jslint": "^0.8",
"mocha": "^2.0",
"mochify": "^2.0",
"bench": "^0.3",
"sinon": "^1.10"
},
"files": [
"lib",
"README.md",
"CHANGES.md",
"LICENSE"
],
"license": "MIT"
}