-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@dpassarelli/topico",
"version": "1.2.0",
"description": "JS pub/sub implementation that only allows for specific topics to be used.",
"main": "index.js",
"scripts": {
"cover:test": "nyc npm run test:unit",
"cover:report": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"test:unit": "mocha",
"test": "npm run lint && npm run cover:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DPassarelli/topico.git"
},
"keywords": [
"pubsub",
"pub/sub",
"topic",
"async",
"asynchronous",
"message",
"publish",
"subscribe"
],
"author": "David Passarelli <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DPassarelli/topico/issues"
},
"homepage": "https://github.com/DPassarelli/topico#readme",
"mocha": {
"reporter": "min",
"file": "test/setup.js",
"ui": "bdd"
},
"standard": {
"global": [
"expect"
]
},
"nyc": {
"check-coverage": true,
"exclude": [
"**/*.spec.js",
"test/"
],
"per-file": true,
"lines": [
85,
92
],
"statements": [
85,
92
],
"functions": [
85,
92
],
"branches": [
85,
92
]
},
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"is-plain-obj": "^2.1.0",
"lodash.uniq": "^4.5.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"standard": "^14.3.4"
},
"dependencies": {
"debug": "^4.2.0",
"mitt": "^2.1.0",
"ulid": "^2.3.0"
}
}