gochan/package.json
2017-12-06 14:32:42 -05:00

38 lines
898 B
JSON

{
"name": "@nodeguy/channel",
"description": "Go-like channels for JavaScript",
"version": "0.6.0",
"author": {
"name": "David Braun",
"email": "David@NodeGuy.com",
"url": "https://www.NodeGuy.com/"
},
"bugs": {
"url": "https://github.com/NodeGuy/channel/issues"
},
"dependencies": {},
"devDependencies": {
"@nodeguy/assert": "0.1.4",
"mocha": "4.0.1",
"nyc": "11.3.0"
},
"homepage": "https://github.com/NodeGuy/channel",
"keywords": ["CSP", "channel", "concurrency"],
"license": "Apache-2.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeGuy/channel.git"
},
"scripts": {
"test": "nyc mocha --recursive"
},
"nyc": {
"check-coverage": true,
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100,
"reporter": ["html", "text-summary"]
}
}