48 lines
987 B
JSON
48 lines
987 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": {
|
|
"setimmediate": "1.0.5"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|