-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 981 Bytes
/
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
{
"name": "pubsubjs",
"version": "0.4.0",
"description": "micro pubsub library",
"tags": [
"node",
"pubsub",
"browser",
"observer",
"event",
"server",
"client",
"publish",
"subscribe"
],
"keywords": [
"node",
"pubsub",
"browser",
"observer",
"event",
"server",
"client",
"publish",
"subscribe"
],
"author": "nazomikan <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nazomikan/PubsubJS.git"
},
"homepage": "https://github.com/nazomikan/PubsubJS",
"bugs": {
"url": "https://github.com/nazomikan/PubsubJS/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nazomikan/PubsubJS/blob/master/MIT-LICENSE.txt"
}
],
"devDependencies": {
"mocha": "1.7.4",
"jquery": "~2.1.3",
"mock-browser": "~0.90.32"
},
"scripts": {
"test": "mocha test/pubsub-test.js"
},
"main": "pubsub.js"
}