-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
91 lines (91 loc) · 2.11 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "geolocator",
"version": "2.1.5",
"description": "A utility for getting geo-location information via HTML5 and IP look-ups, geocoding, address look-ups, distance and durations, timezone information and more...",
"author": {
"name": "Onur Yıldırım",
"email": "onur@cutepilot.com"
},
"license": "MIT",
"main": "dist/geolocator.js",
"files": [
"dist",
"example",
"LICENSE"
],
"homepage": "https://github.com/onury/geolocator",
"repository": {
"type": "git",
"url": "https://github.com/onury/geolocator.git"
},
"bugs": {
"url": "https://github.com/onury/geolocator/issues"
},
"scripts": {
"build:prod": "webpack --config webpack.config.js --env.prod",
"build:dev": "webpack --config webpack.config.js --env.dev",
"build": "npm run build:prod && npm run build:dev",
"serve": "webpack-dev-server --env.serve",
"test": "npm run build:dev && jest --verbose"
},
"jest": {
"testEnvironment": "jsdom",
"roots": [
"<rootDir>/dist",
"<rootDir>/test"
],
"testRegex": "(/test/.*\\.(test|spec))\\.js?$",
"testPathIgnorePatterns": [
"/node_modules/",
"/backup/",
"/example/",
"/.cov/"
],
"collectCoverageFrom": [
"src/index.js"
],
"coverageDirectory": "./test/.cov",
"transform": {},
"bail": true
},
"keywords": [
"geo",
"geolocation",
"location",
"position",
"latitude",
"longitude",
"HTML5",
"google",
"map",
"geocode",
"reverse-geocode",
"ip",
"address",
"lookup",
"distance",
"directions",
"duration",
"matrix",
"route",
"timezone",
"lat",
"lng",
"lon"
],
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-xo": "^0.20.1",
"html-loader": "^0.5.5",
"jest-cli": "^22.4.3",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
}
}