forked from NodeGuy/channel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"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": {},
"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 mocha --recursive"
},
"nyc": {
"check-coverage": true,
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100,
"reporter": [
"html",
"text-summary"
]
}
}