-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
{
"name": "@juliuste/ecolines",
"version": "0.0.0",
"description": "Client for the Ecolines coach travel API.",
"keywords": [
"api",
"bus",
"coach",
"ecolines",
"europe"
],
"homepage": "https://github.com/juliuste/ecolines",
"bugs": "https://github.com/juliuste/ecolines/issues",
"repository": "juliuste/ecolines",
"license": "ISC",
"author": "Julius Tens <mail@juliustens.eu>",
"files": [
"lib/*"
],
"main": "lib/index.js",
"scripts": {
"check-deps": "depcheck",
"fix": "eslint --fix lib test.js",
"lint": "eslint lib test.js",
"prepublishOnly": "npm test",
"test": "npm run lint && npm run check-deps && node test"
},
"dependencies": {
"@mapbox/timespace": "^2.0.4",
"country-tz": "^1.0.0",
"got": "^9.0.0",
"lodash.groupby": "^4.6.0",
"lodash.isdate": "^4.0.1",
"lodash.isstring": "^4.0.1",
"lodash.merge": "^4.6.1",
"lodash.sortby": "^4.7.0",
"mem": "^4.0.0",
"moment-timezone": "^0.5.21"
},
"devDependencies": {
"depcheck": "^0.6.11",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"is-currency-code": "^1.2.0",
"iso-3166-1": "^1.1.0",
"lodash.uniqby": "^4.7.0",
"tape": "^4.9.1",
"tape-promise": "^4.0.0",
"validate-fptf": "^2.1.1"
},
"engines": {
"node": ">=8"
}
}