forked from mroderick/PubSubJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 884 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
{
"name": "pubsub-js",
"version": "1.5.4",
"description": "Dependency free publish/subscribe library",
"main": "./src/pubsub.js",
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"lint": "$(npm bin)/jslint src/**/*.js test/**/*.js",
"test": "npm run lint && $(npm bin)/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.7.18",
"grunt": "0.4.5",
"grunt-buster": "0.3.2",
"grunt-cli": "0.1.13",
"grunt-contrib-concat": "0.5.0",
"jslint": "0.7.2",
"phantomjs": "1.9.13"
}
}