This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 1.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "paul-revere",
"version": "2.2.1",
"description": "Lightweight WebSocket messaging between browsers and Node",
"main": "dist/index.js",
"scripts": {
"prepublish": "babel src -d dist",
"build": "babel src -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"websockets",
"schemapack",
"uws"
],
"engines": {
"node": ">=7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/the-control-group/paul-revere.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1"
},
"babel": {
"presets": [
"es2015"
]
},
"browser": {
"./dist/websocket.js": "./dist/websocket-client.js"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"strict": 0,
"indent": [
2,
"tab",
{
"SwitchCase": 1
}
],
"comma-dangle": 2,
"no-unused-vars": [
2,
{
"args": "none"
}
],
"no-console": 0,
"no-var": 2,
"space-before-function-paren": [
2,
{
"anonymous": "always",
"named": "never"
}
],
"semi": [
2,
"always"
],
"space-infix-ops": 0,
"max-len": [
2,
200,
2
],
"padded-blocks": 0,
"no-multiple-empty-lines": 0
}
},
"author": "Joe Furfaro",
"license": "MIT",
"dependencies": {
"blob-to-buffer": "^1.2.7",
"detect-node": "^2.0.3",
"schemapack": "^1.4.2",
"uuid": "^3.2.1",
"ws": "^5.1.1"
}
}