-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 946 Bytes
/
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
{
"name": "@isogeo/dcat-server",
"version": "1.0.0",
"description": "DCAT server for Isogeo",
"repository": "git@github.com:isogeo/dcat-server.git",
"license": "GPL-3.0",
"private": false,
"scripts": {
"lint": "xo",
"test": "ava",
"start": "node server"
},
"dependencies": {
"JSONStream": "^1.3.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"got": "^11.8.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"pumpify": "^2.0.1"
},
"devDependencies": {
"ava": "^3.15.0",
"xo": "^0.44.0"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"unicorn/prefer-module": "off",
"comma-dangle": "off",
"unicorn/no-array-for-each": "off",
"node/prefer-global/process": "off",
"unicorn/prevent-abbreviations": "off",
"import/extensions": "off"
}
},
"engines": {
"node": ">= 14"
}
}