-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 990 Bytes
/
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
{
"name": "localize",
"version": "1.0.0",
"description": "Geolocation library",
"main": "index.js",
"scripts": {
"lint": "eslint source",
"build": "babel --optional runtime source -d dist",
"test": "mocha -c -b --check-leaks -R tap test.js --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabriciogd/localize.git"
},
"author": "Fabricio Gabriel Dupont",
"dependencies": {
"cheerio": "^0.22.0",
"express": "^4.15.2",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise": "^4.2.0"
},
"keywords": [
"geolocation",
"location",
"geo",
"geocoding",
"mapbox",
"mapquest",
"bing-locations",
"google-geocode"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"mocha": "^3.0.0"
}
}