-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "portage",
"version": "0.0.6",
"description": "Fast pub/sub for JS",
"main": "dist/portage.js",
"directories": {
"test": "tests"
},
"dependencies": {
"fuzzytree": "0.0.7",
"lodash": "^3.9.3"
},
"devDependencies": {
"async": "^1.3.0",
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-loader": "^5.3.1",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"postal": "^1.0.6",
"should": "^7.0.1",
"webpack": "^1.10.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha --opts tests/mocha.opts tests",
"build": "./node_modules/.bin/webpack",
"benchmark": "./node_modules/.bin/babel-node benchmark/index.js",
"lint": "./node_modules/.bin/jshint src/**.js"
},
"repository": {
"type": "git",
"url": "https://github.com/EyalAr/Portage.git"
},
"keywords": [
"pub",
"sub",
"publish",
"subscribe",
"hub",
"channel"
],
"author": "Eyal Arubas <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/EyalAr/Portage/issues"
},
"homepage": "https://github.com/EyalAr/Portage"
}