-
-
Notifications
You must be signed in to change notification settings - Fork 459
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "pubsub-js",
"version": "1.9.5",
"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",
"prepublishOnly": "jsdoc2md --template ./docs/template.hbs --files ./src/*.js > ./docs/docs.md",
"lint": "eslint src/ test/",
"test": "mocha",
"preversion": "npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish --access public"
},
"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": {
"@studio/changes": "^2.0.0",
"eslint": "4.19.1",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "7.1.0",
"nyc": "15.0.0",
"referee": "^1.2.0",
"sinon": "9.0.0"
}
}