forked from busbud/coding-challenge-backend-c
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
{
"name": "coding-challenge-backend-c",
"private": true,
"version": "1.0.0",
"description": "coding challenge in Nodejs",
"main": "./src/app.js",
"scripts": {
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --colors ./test/*/*.js",
"cover:open": "opn ./coverage/lcov-report/index.html",
"lint": "esw --color",
"reset-data": "babel-node app_scripts/create_city_db_from_tsv.js",
"security-check": "nsp check",
"start": "babel-node ./src/app.js",
"test": "mocha --compilers js:babel-core/register --colors ./test/*/*.js",
"test-geo-libs": "babel-node app_scripts/test_geo_distance_libs.js"
},
"author": "Martin Gingras",
"license": "WTFPL",
"dependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-preset-camo": "0.0.1",
"babel-register": "6.24.1",
"cross-env": "4.0.0",
"csv-parse": "1.2.0",
"camo": "0.12.3",
"geolib": "2.0.22",
"i18n-iso-countries": "1.11.0",
"latinize": "0.4.0",
"md5": "2.2.1",
"nedb": "1.8.0",
"npm-run-all": "4.0.2",
"redis": "2.7.1",
"stream-transform": "0.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "3.18.0",
"eslint-config-airbnb-base": "11.1.2",
"eslint-plugin-import": "2.2.0",
"eslint-watch": "3.0.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.2.0",
"nsp": "2.6.3",
"opn-cli": "3.1.0",
"rewire": "2.5.2",
"sphere-knn": "1.3.1",
"supertest": "^3.0.0"
},
"engines": {
"node": "6.10.1"
}
}