forked from mroderick/PubSubJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 844 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
{
"name": "pubsub-js",
"version": "1.5.8",
"description": "Dependency free publish/subscribe library",
"main": "./src/pubsub.js",
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text --reporter=json-summary npm test",
"lint": "eslint src/ test/",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/mroderick/PubSubJS.git"
},
"keywords": [
"pub/sub",
"pubsub",
"publish/subscribe",
"publish",
"subscribe"
],
"author": {
"name": "Morgan Roderick",
"email": "[email protected]",
"url": "http://roderick.dk"
},
"license": "MIT",
"devDependencies": {
"eslint": "^4.14.0",
"mocha": "^4.0.1",
"nyc": "^11.4.1",
"referee": "^1.2.0",
"sinon": "^4.1.3"
}
}