-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "realtime-bus-sms",
"version": "1.0.0",
"description": "Gets realtime bus data for the Peoplemover in Anchorage, AK. Input and output is through Twilio.",
"main": "index.js",
"scripts": {
"integration": "mocha --delay test/*integration_test.js || true",
"unit": "mocha --delay test/*unit_test.js || true",
"test": "npm run unit && npm run integration",
"start": "node ./bin/www"
},
"repository": {
"type": "git",
"url": "https://github.com/codeforanchorage/realtime-bus-sms.git"
},
"author": "Nigel Kibodeaux",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeforanchorage/realtime-bus-sms/issues"
},
"homepage": "https://github.com/codeforanchorage/realtime-bus-sms",
"dependencies": {
"@turf/distance": "^4.6.0",
"@turf/helpers": "^4.6.0",
"body-parser": "^1.20.3",
"cookie-parser": "~1.3.3",
"cron": "^1.4.0",
"csv-parse": "^4.4.6",
"debug": "^3.1.0",
"emoji-regex": "^6.4.2",
"express": "^4.21.0",
"fs-extra": "^5.0.0",
"hashwords": "^0.1.2",
"ibm-watson": "^9.1.0",
"lowdb": "^1.0.0",
"moment-timezone": "^0.5.35",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"pug": "^3.0.3",
"pure-uuid": "^1.4.2",
"request": "^2.88.2",
"rollbar": "^2.4.4",
"run-middleware": "^0.9.10",
"serve-favicon": "^2.5.0",
"twilio": "^5.2.2",
"universal-analytics": "^0.5.3",
"watson-developer-cloud": "^3.9.0",
"winston": "^2.3.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"nock": "^9.1.6",
"node-mocks-http": "^1.6.4",
"sinon": "^6.1.5",
"supertest": "^3.0.0"
}
}