-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "brampton-transit-api",
"version": "1.0.0",
"description": "An unofficial API for retrieving live Brampton Transit bus times.",
"main": "lib/index.js",
"scripts": {
"start": "./bin/server",
"start:dev": "NODE_ENV=development nodemon ./bin/server",
"test": "npm run test:lint && mocha --colors --bail --reporter spec test",
"test:lint": "eslint bin/* lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kshvmdn/brampton-transit-api.git"
},
"keywords": [],
"author": "Kashav Madan <[email protected]> (http://kshvmdn.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kshvmdn/brampton-transit-api/issues"
},
"homepage": "https://github.com/kshvmdn/brampton-transit-api#readme",
"engines": {
"node": "^6"
},
"devDependencies": {
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.1.0",
"nodemon": "^1.10.2",
"should": "^11.1.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"cheerio": "^0.22.0",
"express": "^4.14.0",
"got": "^6.5.0",
"helmet": "^2.3.0",
"method-override": "^2.3.6",
"morgan": "^1.7.0",
"redis": "^2.6.2",
"serve-favicon": "^2.3.0",
"winston": "^2.2.0"
}
}