forked from cdot/Xanado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.5 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "Xanado",
"description": "Multi user crossword game",
"version": "1.0.0",
"author": {
"name": "Crawford Currie",
"url": "https://github.com/cdot"
},
"repository": {
"type": "git",
"url": "git://github.com/cdot/Xanado"
},
"main": "server",
"engines": {
"node": ">=12.0.0"
},
"license": "MIT",
"dependencies": {
"@wikimedia/jquery.i18n": "^1.0.7",
"bcrypt": "^5.0.1",
"cldrpluralruleparser": "^1.4.0",
"cookie-parser": ">=1.4.6",
"errorhandler": ">=1.5.1",
"express": ">=4.18.1",
"express-basic-auth": ">=1.2.1",
"express-session": "^1.17.3",
"get-user-locale": ">=1.5.0",
"https": ">=1.0.0",
"jquery": "^3.6.0",
"jquery-ui-dist": "^1.13.1",
"jquery-ui-touch-punch": "^0.2.3",
"jquery.cookie": "^1.4.1",
"node-getopt": ">=0.3.2",
"node-gzip": ">=1.1.2",
"nodemailer": ">=6.7.7",
"normalize.css": "^8.0.1",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"proper-lockfile": "^4.1.2",
"requirejs": ">=2.3.6",
"socket.io": ">=4.5.1"
},
"devDependencies": {
"chai": ">=4.3.6",
"chai-http": "^4.3.0",
"docdash": "^1.2.0",
"eslint": ">=8.21.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.11",
"marked": "^4.0.18",
"mocha": ">=10.0.0",
"nyc": "^15.1.0",
"why-is-node-running": "^2.2.2"
},
"scripts": {
"server": "node server.js",
"doc": "jsdoc --verbose -c doc/config.json -r -p -d doc js",
"lint": "eslint js",
"test": "mocha --extension ut --timeout=5000",
"coverage": "nyc --hook-run-in-context --hook-run-in-this-context --reporter=html --reporter text mocha --extension ut --timeout=5000",
"tx": "node bin/checkStrings.js",
"update": "ncu -u ",
"docker": "docker build . --tag xword"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 13
},
"env": {
"shared-node-browser": true,
"jquery": true,
"es6": true,
"amd": true
},
"globals": {
"requirejs": "writable",
"Mocha": "writable"
},
"rules": {
"camelcase": 0,
"curly": 0,
"dot-notation": 1,
"new-cap": 0,
"no-alert": 0,
"no-console": 0,
"no-debugger": 0,
"no-eval": 0,
"no-fallthrough": 0,
"no-loop-func": 1,
"no-mixed-spaces-and-tabs": 0,
"no-new": 0,
"no-prototype-builtins": 0,
"no-redeclare": [
"error",
{
"builtinGlobals": true
}
],
"no-trailing-spaces": 1,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"no-useless-escape": 1,
"no-use-before-define": 0,
"quotes": 0,
"strict": 0
}
}
}