-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "city-namer",
"version": "1.0.0",
"description": "Browse OpenStreetMap for cities missing localized names",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Georeactor/city-namer.git"
},
"author": "Nick Doiron <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Georeactor/city-namer/issues"
},
"homepage": "https://github.com/Georeactor/city-namer#readme",
"dependencies": {
"body-parser": "^1.18.2",
"check-for-nameless": "^1.1.1",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.1",
"connect-mongo": "2.0.0",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"jade": "^1.11.0",
"mongoose": "5.3.12",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-openstreetmap": "^0.1.2",
"request": "^2.83.0",
"time-ago": "^0.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.0",
"supertest": "^3.0.0"
}
}