-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
80 lines (80 loc) · 1.98 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
{
"name": "ts-event-bus",
"version": "4.2.0",
"description": "Distributed messaging in Typescript",
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"build"
],
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "[email protected]:Dashlane/ts-event-bus.git"
},
"keywords": [
"ts-event-bus",
"typescript",
"event-bus"
],
"license": "Apache-2.0",
"scripts": {
"ci": "run-s validate:* test",
"test": "jest",
"build": "run-s build:*",
"build:clean": "rm -rf ./build",
"build:src": "babel src -d ./build --extensions \".ts\"",
"build:dec": "tsc -d --emitDeclarationOnly --declarationMap",
"validate": "run-p validate:*",
"validate:lint": "tslint -t stylish --project .",
"validate:format": "tsfmt --verify",
"validate:typecheck": "tsc --noEmit",
"validate:audit": "node ./meta/audit.js",
"lint": "tslint --fix --project .",
"format": "tsfmt -r",
"prepublishOnly": "run-s validate build"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/chrome": "^0.0.155",
"@types/jest": "^29.5.12",
"@types/node": "^16.18.84",
"@types/ws": "^3.2.1",
"expect-type": "^0.13.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tslint": "^5.6.0",
"typescript": "5.3.3",
"typescript-formatter": "^7.2.2",
"ws": "^3.3.2"
},
"husky": {
"hooks": {
"pre-push": "npm run ci"
}
},
"contributors": [
{
"name": "Loïc Guychard",
"email": "[email protected]"
},
{
"name": "Denis Schneider",
"email": "[email protected]"
}
],
"resolutions": {
"@babel/traverse": "7.24.0",
"json5": "2.2.3",
"minimatch": "3.0.5"
}
}