-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "cent.js",
"description": "Javascript library to communicate with Centrifugo HTTP API",
"version": "6.0.0",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"prepublish:npm": "npm run build",
"publish:npm": "release-it",
"prepublish:dev": "npm run build",
"publish:dev": "npm publish --access public --tag dev",
"prepare": "husky",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern .gitignore src/**/*.ts",
"test": "jest"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Alexey Filippov <[email protected]>",
"license": "MIT",
"keywords": [
"centrifugo",
"ws",
"websocket",
"websockets"
],
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-angular": "19.7.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/jest": "29.5.14",
"@types/node": "22.13.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"prettier": "3.4.2",
"release-it": "18.1.2",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.7.3",
"typescript-eslint": "^8.21.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketSomeone/cent.js.git"
},
"homepage": "https://github.com/SocketSomeone/cent.js#readme"
}