-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "@transit/gtfs",
"version": "4.1.0",
"description": "A Node.js library for GTFS",
"main": "index.js",
"scripts": {
"test": "mocha tests/*",
"publish-major": "npm version major && npm publish --access public && git push --tags",
"publish-minor": "npm version minor && npm publish --access public && git push --tags",
"publish-patch": "npm version patch && npm publish --access public && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TransitApp/gtfsNodeLib.git"
},
"keywords": [
"GTFS",
"Transit"
],
"author": "Transit Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/TransitApp/gtfsNodeLib/issues"
},
"homepage": "https://github.com/TransitApp/gtfsNodeLib#readme",
"dependencies": {
"async": "2.6.4",
"debug": "3.1.0",
"fs-extra": "5.0.0",
"papaparse": "^5.2.0"
},
"jshintConfig": {
"esversion": 6,
"node": true,
"globals": {
"__rootname": false
}
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.18.2",
"eslint-config-transit": "^1.0.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^5.2.0"
}
}