-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.81 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
{
"name": "gtfs-stream",
"version": "2.2.0",
"description": "Streaming GTFS and GTFS-RT parser for node",
"main": "dist/index.js",
"keywords": [
"gtfs",
"gtfs-rt",
"transit",
"stream",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/staeco/gtfs-stream.git"
},
"contributors": [
"Contra <[email protected]> (http://contra.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/staeco/gtfs-stream/issues"
},
"homepage": "https://github.com/staeco/gtfs-stream#readme",
"files": [
"dist"
],
"nyc": {
"extends": "@istanbuljs/nyc-config-babel",
"include": [
"src/**/*.js"
],
"all": true,
"skip-full": true,
"check-coverage": true
},
"scripts": {
"preversion": "npm run clean && npm run build",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "NODE_ENV=testing nyc mocha --require @babel/register --recursive --reporter spec --bail --exit --timeout 36000"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/register": "^7.4.4",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@stae/babel-node": "^1.0.0",
"@stae/linters": "^1.0.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.0.0",
"get-stream": "^6.0.0",
"into-stream": "^6.0.0",
"mocha": "^8.0.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"should": "^13.0.0"
},
"dependencies": {
"csv-parser": "^3.0.0",
"duplexify": "^4.0.0",
"gtfs-realtime-bindings": "^0.0.6",
"lodash.pickby": "^4.6.0",
"merge2": "^1.2.2",
"pluralize": "^8.0.0",
"pumpify": "^2.0.0",
"remove-bom-stream": "^1.2.0",
"through2": "^4.0.0",
"unzipper": "^0.10.1"
}
}