-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 1.38 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
{
"name": "blekingetrafiken",
"version": "0.1.1",
"description": "An API to retrieve public transport information, schedules and routes in Blekinge",
"main": "index.js",
"scripts": {
"lint": "xo",
"test": "ava",
"coverage": "nyc ava -t",
"check-duplicate-code": "jsinspect -t 20 lib"
},
"repository": {
"type": "git",
"url": "git://github.com/alexgustafsson/blekingetrafiken.git"
},
"keywords": [
"bus",
"public",
"transportation",
"commute",
"train",
"blekinge",
"api"
],
"author": "Alex Gustafsson",
"license": "MIT",
"devDependencies": {
"ava": "^3.15.0",
"esm": "^3.2.25",
"jsinspect": "^0.12.7",
"nyc": "^15.1.0",
"xo": "^0.40.2"
},
"dependencies": {
"axios": "^0.21.1",
"moment": "^2.29.1",
"xml2js": "^0.4.23"
},
"xo": {
"space": 2,
"esnext": true,
"rules": {
"curly": [
"error",
"multi-or-nest",
"consistent"
],
"no-use-before-define": [
"error",
{
"classes": false
}
],
"unicorn/catch-error-name": [
"error",
{
"name": "error"
}
],
"dot-notation": [
"off"
],
"quote-props": [
"off"
],
"object-curly-spacing": [
"off"
]
}
},
"ava": {
"require": [
"esm"
]
}
}