-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.83 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": "public-transport-ireland",
"version": "1.4.0",
"description": "Node.js module with utility functions to get real time data for Irish public transport (Irish Rail, Luas, Dublin Bus)",
"main": "dist/index.js",
"engine": {
"node": ">=8"
},
"engineStrict": true,
"files": [
"dublin-bus.js",
"irish-rail.js",
"luas.js",
"dist/"
],
"types": "./lib/index.d.ts",
"dependencies": {
"got": "^9.6.0",
"luxon": "^1.18.0",
"soap": "^0.29.0",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/got": "^9.6.7",
"@types/jest": "^24.0.18",
"@types/luxon": "^1.15.2",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"nock": "^11.3.5",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"scripts": {
"test": "npm run test:lint && npm run test:types && npm run test:unit",
"test:lint": "eslint src/**/*.ts",
"test:types": "tsc --noEmit",
"test:unit": "jest",
"build": "tsc",
"build:publish": "./scripts/publishIfTagMatches.sh $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/irish-public-transport.git"
},
"keywords": [
"ireland",
"transport",
"real time",
"bus",
"train",
"dublin bus",
"irish rail",
"luas"
],
"author": "Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmammino/irish-public-transport/issues"
},
"homepage": "https://github.com/lmammino/irish-public-transport#readme"
}