-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.46 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
{
"name": "histvv",
"version": "1.3.2",
"description": "Histvv Web Application",
"license": "GPL-3.0-or-later",
"homepage": "https://histvv.uni-leipzig.de",
"repository": "https://github.com/ubleipzig/histvv",
"bugs": "https://github.com/ubleipzig/histvv/issues",
"author": "Carsten Milling <cmil@hashtable.de>",
"scripts": {
"lint": "xo",
"start": "nodemon --watch . -e js,json,xsl,xq --watch ./bin/www ./bin/www",
"test": "xo"
},
"bin": {
"histvv-server": "bin/www"
},
"dependencies": {
"async": "^3.2.0",
"axios": "^0.20.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"libxslt": "^0.9.0",
"morgan": "^1.10.0",
"nconf": "^0.10.0",
"parseurl": "^1.3.3",
"wait-on": "^5.2.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.3",
"xo": "^0.29.1"
},
"engines": {
"node": ">=12.0"
},
"xo": {
"space": true,
"semicolon": true,
"envs": [
"node",
"es6",
"jest"
],
"rules": {
"space-before-function-paren": [
"error",
"always"
],
"spaced-comment": 0,
"capitalized-comments": 0,
"operator-linebreak": [
1,
"after",
{
"overrides": {
"?": "before",
":": "before"
}
}
],
"unicorn/prefer-number-properties": 0,
"unicorn/prevent-abbreviations": 0
},
"ignores": [
"doc/**",
"public/**"
]
}
}