-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 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
65
66
67
{
"private": true,
"workspaces": {
"packages": [
"benchmark",
"packages/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hans00/fastWS.git"
},
"author": "Hans <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hans00/fastWS/issues"
},
"homepage": "https://github.com/hans00/fastWS#readme",
"scripts": {
"bump-version": "lerna version --conventional-commits",
"publish-all": "lerna publish from-package --no-sort --yes",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "node test",
"coverage": "yarn run coverage:test && yarn run coverage:report",
"coverage:test": "nyc yarn run test",
"coverage:report": "nyc report --reporter=lcov --reporter=text-summary",
"prepare": "husky install",
"release:major": "yarn bump-version major",
"release:minor": "yarn bump-version minor",
"release:patch": "yarn bump-version patch"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"ansi-colors": "^4.1.3",
"axios": "^1.2.0",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-perf-standard": "^1.0.3",
"eslint-plugin-promise": "^6.0.0",
"form-data": "^4.0.0",
"husky": "^8.0.0",
"lerna": "^6.0.1",
"lru-cache": "^7.10.1",
"mkcert": "^1.5.0",
"nyc": "^15.1.0",
"tmp": "^0.2.1",
"ws": "^8.6.0"
},
"resolutions": {
"tar": "^6.1.11",
"uuid": "^8.3.2",
"node-gyp": "^9.0.0",
"trim-newlines": "^3.0.1",
"debug": "^2.6.9"
},
"dependencies": {
"node-gyp": "^9.0.0",
"tar": "^6.1.11"
}
}