-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "nile.chat",
"version": "1.0.0",
"description": "Chat for communities.",
"main": "server.js",
"scripts": {
"test": "npm run testsuite",
"testsuite": "./node_modules/.bin/mocha test/* --recursive --exit",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --exit",
"linter": "xo",
"prepare": "browserify -t vueify -e src/index.js | babel-minify --mangle false > public/bundle.js",
"dev": "watchify -t vueify -e src/index.js -o public/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ovsoinc/nile.chat.git"
},
"author": "Shawn Wilkinson <me@super3.org> (http://super3.org)",
"contributors": [
"Shawn Wilkinson <me@super3.org> (http://super3.org)",
"Monty Anderson <work@montyanderson.net> (https://montyanderson.net)"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ovsoinc/nile.chat.git"
},
"homepage": "https://github.com/ovsoinc/nile.chat.git#readme",
"dependencies": {
"axios": "^0.21.1",
"babel-minify": "^0.5.1",
"browserify": "^17.0.0",
"debug": "^4.3.1",
"dog-names": "^2.0.0",
"ioredis": "^4.27.2",
"koa": "^2.13.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"mz": "^2.7.0",
"relative-date": "^1.1.3",
"socket.io": "^4.1.0",
"socket.io-client": "^4.1.0",
"vue": "2.6.12",
"vue-router": "^3.5.1",
"vue-server-renderer": "2.6.12",
"vueify": "^9.4.1",
"watchify": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"xo": "^0.40.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^8.4.0"
},
"xo": {
"globals": [
"window",
"describe",
"it",
"before",
"document"
],
"rules": {
"no-await-in-loop": "off",
"curly": "off",
"capitalized-comments": "off",
"no-new": "off",
"prefer-rest-params": "off",
"unicorn/filename-case": "off",
"keyword-spacing": "off",
"require-atomic-updates": "off"
}
}
}