forked from smrycek/BikeSafety
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 3.5 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": "BikeSafety",
"version": "0.0.2",
"author": "Sean Rycek, Dalton Shehan, Taylor Griffin, Ryan Adams, Dane Summers, Jeremy Neiman",
"description": "An application to help bike riders analyze paths and find those that are safer than others",
"contributors": [
{
"name": "Sean Rycek",
"email": "smrycek@ncsu.edu"
},
{
"name": "Dalton Shehan",
"email": "ldshehan@ncsu.edu"
},
{
"name": "Taylor Griffin",
"email": "tsgriffi@ncsu.edu"
},
{
"name": "Ryan Adams",
"email": "rnadams@ncsu.edu"
},
{
"name": "Dane Summers",
"email": "dsummersl@yahoo.com"
},
{
"name": "Jeremy Neiman",
"email": "docmarionum1@gmail.com"
}
],
"main": "./server.js",
"noAnalyze": true,
"license": "Apache",
"engines": {
"node": "^8.1.4"
},
"scripts": {
"postinstall": "./node_modules/.bin/bower -f install",
"start": "node ./server.js",
"start-test": "./node_modules/karma/bin/karma start",
"test": "./node_modules/karma/bin/karma start --single-run && ./node_modules/.bin/jasmine",
"export-bicyclist-crashes": "node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/bicyclist_crashes HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/bicyclist_crashes.json && node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/bicyclist_crashes_user_submitted HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/bicyclist_crashes_user_submitted.json",
"export-pedestrian-crashes": "node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/pedestrian_crashes HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/pedestrian_crashes.json && node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/pedestrian_crashes_user_submitted HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/pedestrian_crashes_user_submitted.json",
"export-all-crashes": "node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/crashes HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/bicyclist_crashes.json && node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/crashes_user_submitted HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/bicyclist_crashes_user_submitted.json && node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/pedestrian_crashes HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/pedestrian_crashes.json && node ./bin/export_firebase.js https://bikesafetytwo.firebaseio.com/pedestrian_crashes_user_submitted HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG > data/pedestrian_crashes_user_submitted.json",
"create-firebase": "node ./bin/create_firebase.js https://bikesafetytwo.firebaseio.com HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG",
"import-firebase": "node ./bin/import_firebase.js https://bikesafetytwo.firebaseio.com HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG",
"delete-firebase": "node ./bin/delete_firebase.js https://bikesafetytwo.firebaseio.com HjQfDNcylTuOQ1X2GWxcO0QncISe0YXPKl7TcOjG"
},
"dependencies": {
"body-parser": "^1.17.2",
"bower": "^1.8.0",
"cookie-parser": "^1.4.3",
"csv": "^0.4.5",
"errorhandler": "^1.5.0",
"express": "~4.13.4",
"firebase": "~3.0.5",
"highland": "^2.11.1",
"jade": "~1.11.0",
"lodash": "^4.11.2",
"method-override": "^2.3.9",
"nconf": "~0.8.4",
"serve-favicon": "^2.4.3",
"serve-static": "^1.12.3"
},
"devDependencies": {
"jasmine": "^2.6.0",
"jasmine-core": "^2.6.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.0"
}
}