-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "ts-simple-event-bus",
"version": "2.0.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack --config webpack.config.js",
"build:typescript": "tsc",
"test:watch": "nyc mocha -r ts-node/register --watch --watch-files src, src/**/**/*.test.ts",
"test": "nyc mocha -r ts-node/register **/**/*.test.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Hugo LAPLACE-BUILHE",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-spies": "^1.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/mocha": "^9.0.0",
"@types/node": "^20.10.7",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"coveralls": "^3.1.1",
"mocha": "^9.1.3",
"nanoid": "^3.3.2",
"nyc": "^15.1.0",
"ts-node-dev": "^1.1.1",
"typescript": "^5.3.3"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"dist/"
],
"reporter": [
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sangrene/ts-event-bus.git"
},
"keywords": [
"event",
"bus"
],
"bugs": {
"url": "https://github.com/Sangrene/ts-event-bus/issues"
},
"homepage": "https://github.com/Sangrene/ts-event-bus#readme",
"description": "Simple TS event bus"
}