-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "@anephenix/sarus",
"version": "0.6.6",
"description": "A WebSocket JavaScript library",
"main": "dist/index.js",
"contributors": [
{
"name": "Paul Jensen",
"email": "paulbjensen@gmail.com",
"url": "https://paulbjensen.co.uk"
},
{
"name": "Chris Lajoie",
"email": "chris@ettaviation.com"
},
{
"name": "Justus Perlwitz",
"email": "justus@jwpconsulting.net",
"url": "https://www.jwpconsulting.net"
}
],
"devDependencies": {
"@babel/parser": "^7.22.5",
"@babel/types": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/websocket": "^1.0.5",
"@types/window-or-global": "^1.0.6",
"dom-storage": "^2.1.0",
"ip-regex": "^5.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^2.4.0",
"jsdoc": "^4.0.2",
"jsdom": "^25.0.0",
"mock-socket": "^9.2.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.3"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"check-prettier": "prettier src __tests__ --check",
"prepare-patch-release": "npm run update-changelog && git add CHANGELOG.md && git commit -m \"Updated changelog\" && npm version patch",
"prettier": "prettier src __tests__ --write",
"publish-patch-release": "npm run prepare-patch-release && git push origin master && git push --tags",
"test": "jest --coverage",
"update-changelog": "npx ts-node scripts/update-changelog.ts",
"watch": "tsc --project tsconfig.json --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anephenix/sarus.git"
},
"keywords": [
"websocket"
],
"author": "Paul Jensen <paul@anephenix.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anephenix/sarus/issues"
},
"homepage": "https://github.com/anephenix/sarus#readme"
}