forked from mroderick/PubSubJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (36 loc) · 667 Bytes
/
package.json
File metadata and controls
42 lines (36 loc) · 667 Bytes
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
{
"name": "pubsub-js",
"version": "1.3.5",
"description": "Dependency free publish/subscribe library",
"main": "./src/pubsub.js",
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/mroderick/PubSubJS.git"
},
"keywords": [
"pub/sub",
"pubsub",
"publish/subscribe",
"publish",
"subscribe"
],
"author": {
"name": "Morgan Roderick",
"email": "morgan@roderick.dk",
"url": "http://roderick.dk"
},
"license": "MIT",
"devDependencies": {
"buster": "0.6.x",
"grunt": "0.4.0",
"grunt-jslint": "0.2.5",
"grunt-buster": "0.1.2"
}
}