-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
{
"name": "tiny-ws",
"version": "1.0.0-alpha.1",
"description": "WebSocket library",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "npm run -s lint && npm run types && node --test",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/MarhiievHE/tinyWS.git"
},
"keywords": [
"WebSocket"
],
"author": "Heorhii Marhiiev",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarhiievHE/tinyWS/issues"
},
"homepage": "https://github.com/MarhiievHE/tinyWS#readme",
"devDependencies": {
"@types/node": "^20.5.0",
"eslint": "^8.47.0",
"eslint-config-metarhia": "^8.2.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"typescript": "^5.2.2"
}
}