gochan/package.json

32 lines
814 B
JSON

{
"name": "@nodeguy/channel",
"description": "Go-like channels for JavaScript",
"version": "0.4.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.1",
"husky": "0.14.3",
"mocha": "3.5.3",
"prettier": "1.7.4"
},
"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": {
"precommit": "prettier --write lib/**/*.js test/**/*.js",
"test": "mocha --recursive"
}
}