-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
111 lines (111 loc) · 2.75 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
111
{
"name": "apis.is",
"version": "0.3.0",
"main": "server.js",
"author": {
"name": "Kristján Ingi Mikaelsson",
"email": "[email protected]"
},
"engines": {
"node": ">=8.6.0"
},
"xo": {
"envs": [
"node",
"mocha"
],
"semicolon": false,
"space": true,
"rules": {
"object-curly-spacing": "off",
"arrow-parens": "off",
"comma-dangle": "off",
"camelcase": "off",
"curly": "off",
"capitalized-comments": "off",
"unicorn/catch-error-name": "off",
"unicorn/filename-case": "off",
"brace-style": "off",
"max-params": "off",
"no-implicit-coercion": "off",
"max-nested-callbacks": "off",
"handle-callback-err": "off",
"no-warning-comments": "off",
"no-negated-condition": "off",
"unicorn/prefer-type-error": "off",
"unicorn/no-abusive-eslint-disable": "off"
}
},
"description": "A json wrapper around publicly open data in Iceland",
"licence": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kristjanmik/apis.git"
},
"contributors": [
{
"name": "Arnór Heiðar Sigurðsson",
"email": "[email protected]"
},
{
"name": "Ragnar Þór Valgeirsson (rthor)",
"email": "[email protected]",
"url": "http://rthor.is"
},
{
"name": "Baldur Már Helgason",
"email": "[email protected]"
},
{
"name": "Benedikt D Valdez (benediktvaldez)",
"email": "[email protected]",
"url": "http://bdvs.info"
},
{
"name": "Kristján Oddsson (koddsson)",
"email": "[email protected]",
"url": "https://koddsson.com"
},
{
"name": "Alexander Baldvin",
"email": "[email protected]"
}
],
"dependencies": {
"apis-helpers": "0.0.1",
"cheerio": "0.22.0",
"debug": "3.1.0",
"expect": "22.4.3",
"express": "^4.16.3",
"file": "~0.2.2",
"fridagar": "3.0.0",
"globby": "8.0.1",
"graphql": "0.13.2",
"iconv-lite": "0.4.21",
"isn2wgs": "0.0.2",
"lodash": "^4.17.5",
"marked": "github:koddsson/marked#escape-markdown-option",
"mocha": "5.1.1",
"moment": "2.22.1",
"nock": "^9.2.3",
"raven": "2.4.2",
"redis": "^2.8.0",
"request": "2.85.0",
"scraper": "0.0.9",
"statuses": "^1.4.0",
"xml2js": "0.4.19",
"xregexp": "4.1.1"
},
"scripts": {
"dev": "nodemon server.js",
"start": "DEBUG=server node server.js",
"test": "NODE_ENV=test mocha --exit --timeout 10000 --reporter=dot ./lib/*.spec.js ./test.js ./endpoints/*/tests/integration_test.js",
"coveralls": "exit 0",
"lint": "xo"
},
"devDependencies": {
"nodemon": "1.17.3",
"sinon": "5.0.3",
"xo": "^0.21.0"
}
}