-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.24 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.24 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
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
{
"name": "socket-server",
"version": "0.0.1",
"description": "Socket server example",
"main": "index.js",
"scripts": {
"test": "exit 0",
"start": "node index.js"
},
"author": "hirako2000",
"license": "MIT",
"dependencies": {
"express": "^4.15.2",
"socket.io": "^1.7.3"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
}
},
"xo": {
"space": 2,
"esnext": true,
"parser": "babel-eslint",
"envs": [
"node",
"browser",
"es6"
],
"syntax_map": {
"JavaScript (Babel)": "javascript"
},
"rules": {
"operator-linebreak": [
2,
"before"
],
"curly": [
2,
"multi-or-nest"
],
"one-var": 0,
"no-else-return": 1,
"no-undef": 0,
"no-new": 0,
"camelcase": 0,
"linebreak-style": 0,
"new-cap": [
1,
{
"newIsCap": true,
"capIsNew": true,
"properties": false
}
],
"babel/arrow-parens": 0,
"xo/filename-case": 0,
"no-warning-comments": 0,
"unicorn/filename-case": 0,
"import/no-unassigned-import": 0,
"import/prefer-default-export": 0
}
}
}