-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1007 Bytes
/
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
{
"name": "multiws",
"version": "0.10.5",
"description": "Common API for different websocket implementations",
"author": "Angel Jimenez <[email protected]>",
"license": "MIT",
"repository": "https://github.com/nayarsystems/multiws",
"main": "dist/multiws.js",
"keywords": [],
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"watch": "webpack --watch --mode development",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"prepublishOnly": "rm -rf dist && npm run build",
"flow": "flow"
},
"files": [
"dist/multiws.js"
],
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"flow-bin": "^0.83.0",
"prettier": "^1.18.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3"
},
"dependencies": {}
}