-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.97 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
{
"name": "@anephenix/hub",
"version": "0.0.31",
"description": "A Node.js WebSocket server and client with added features",
"main": "index.js",
"scripts": {
"build-cucumber-support-files": "npx esbuild support/client/main.js --bundle --minify --sourcemap --outdir=support/client/dist",
"certs": "mkdir -p certs && cd certs && mkcert localhost 127.0.0.1 ::1",
"lint": "npx eslint .",
"cover": "NODE_ENV=test npx nyc --reporter=lcov npm t",
"cucumber": "NODE_ENV=test npx cucumber-js --no-strict",
"cucumber-wip": "NODE_ENV=test npx cucumber-js --no-strict -t @wip",
"prepare-patch-release": "npm run update-changelog && git add CHANGELOG.md && git commit -m \"Updated changelog\" && npm version patch",
"publish-patch-release": "npm run prepare-patch-release && git push origin master && git push --tags",
"test": "NODE_ENV=test npx mocha -r node-localstorage/register __tests__/* --test --exit",
"update-changelog": "node scripts/update-changelog.js"
},
"keywords": [
"websocket",
"rpc",
"pubsub"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run cucumber"
}
},
"author": "Paul Jensen <[email protected]>",
"license": "MIT",
"dependencies": {
"@anephenix/sarus": "^0.6.0",
"localStorage": "^1.0.4",
"node-ip": "^0.1.2",
"npm-check-updates": "^17.1.1",
"redis": "^4.6.14",
"uuid": "^11.0.1",
"ws": "^8.17.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.5",
"@cucumber/cucumber": "^11.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.3.0",
"eslint-plugin-jest": "^28.5.0",
"git-changed-files": "^1.0.0",
"gradient-string": "^3.0.0",
"http-shutdown": "^1.2.2",
"husky": "^9.1.5",
"mocha": "^11.0.1",
"mocha-lcov-reporter": "^1.3.0",
"node-emoji": "^2.1.3",
"node-localstorage": "^3.0.5",
"npm": "^11.0.0",
"nyc": "^17.0.0",
"prettier": "^3.2.5",
"puppeteer": "^24.1.0",
"terminal-kit": "^3.1.1",
"why-is-node-running": "^3.2.0"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}