This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.08 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
68
69
70
71
72
73
74
75
{
"name": "@spiralscout/websockets",
"version": "0.1.0",
"description": "Websocket client for spiral framework",
"main": "build/socket.js",
"types": "build/index.d.ts",
"engines" : { "node" : ">=16.13.0" },
"keywords": [
"websocket",
"client",
"js"
],
"scripts": {
"clean": "rimraf ./build && rimraf ./types",
"prebuild": "yarn clean",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"watch": "webpack --watch --colors",
"build:js": "webpack",
"build": "cross-env NODE_ENV=production yarn build:js",
"lint": "eslint ./**/*.ts --fix",
"test": "jest",
"prepare": "yarn lint & yarn test & yarn build"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"files": [
"lib",
"build"
],
"author": "SpiralScout",
"license": "MIT",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/spiral/websockets"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/spiral/websockets",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/types": "^7.16.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-jest": "^27.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-output-todo-comments": "^0.0.7",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-websocket-mock": "^2.2.1",
"mock-socket": "^9.0.7",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-loader": "^7.0.5",
"typescript": "^4.4.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}