-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.28 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
{
"name": "restbus",
"description": "RESTful JSON API for the NextBus Inc. public XML feed.",
"version": "2.4.2",
"main": "index.js",
"dependencies": {
"compression": "1.7.4",
"express": "^4.19.2",
"morgan": "1.9.1",
"xml2js": "0.5.0"
},
"devDependencies": {
"@codegenie/serverless-express": "^4.13.0",
"prettier": "^3.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">= 0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/morganney/restbus.git"
},
"homepage": "https://morganney.github.io/restbus.info",
"keywords": [
"umo",
"nextbus",
"api",
"rest",
"json",
"proxy"
],
"bugs": {
"url": "https://github.com/morganney/restbus/issues"
},
"author": {
"name": "Morgan Ney <[email protected]>",
"url": "https://morgan.neys.info"
},
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"prettier": "prettier -w .",
"start": "node index.js run",
"dev": "node --watch index.js run",
"build": "NODE_ENV=production webpack",
"zip": "cd dist && zip restbus.zip index.js"
},
"prettier": {
"arrowParens": "avoid",
"bracketSameLine": true,
"printWidth": 90,
"singleQuote": true,
"trailingComma": "none"
}
}