gochan/package.json
2017-12-06 14:38:07 -05:00

46 lines
956 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",
"eslint": "4.12.1",
"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"
]
}
}