54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "@nodeguy/channel",
|
|
"description": "Go-like channels for JavaScript",
|
|
"version": "1.0.1",
|
|
"author": {
|
|
"name": "David Braun",
|
|
"email": "David@NodeGuy.com",
|
|
"url": "https://www.NodeGuy.com/"
|
|
},
|
|
"bugs": {
|
|
"url": "https://gitlab.com/NodeGuy/channel/issues"
|
|
},
|
|
"dependencies": {
|
|
"ts-mocha": "^8.0.0",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@nodeguy/assert": "0.1.4",
|
|
"@stryker-mutator/core": "4.4.1",
|
|
"@stryker-mutator/javascript-mutator": "4.0.0",
|
|
"@stryker-mutator/mocha-framework": "4.0.0",
|
|
"@stryker-mutator/mocha-runner": "4.4.1",
|
|
"eslint": "7.19.0",
|
|
"mocha": "8.2.1",
|
|
"nyc": "15.1.0"
|
|
},
|
|
"homepage": "https://gitlab.com/NodeGuy/channel",
|
|
"keywords": [
|
|
"CSP",
|
|
"channel",
|
|
"concurrency"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"main": "lib/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://gitlab.com/NodeGuy/channel.git"
|
|
},
|
|
"scripts": {
|
|
"mutationTest": "stryker run",
|
|
"test": "nyc ts-mocha --recursive"
|
|
},
|
|
"nyc": {
|
|
"check-coverage": true,
|
|
"branches": 100,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100,
|
|
"reporter": [
|
|
"html",
|
|
"text-summary"
|
|
]
|
|
}
|
|
}
|