-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
60 lines (60 loc) · 1.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
{
"name": "mobile-locator",
"version": "0.6.3",
"description": "Locate geolocation information based on Cell base station data",
"author": "Tao Wang <[email protected]>",
"repository": "twang2218/mobile-locator",
"license": "Apache-2.0",
"bugs": "https://github.com/twang2218/mobile-locator/issues",
"keywords": [
"cellocation",
"google",
"geolocation",
"gpsspg",
"haoservice",
"mozilla",
"mylnikov",
"opencellid",
"unwiredlabs",
"yandex",
"gsm",
"cell",
"mobile",
"locator",
"cell tower",
"base station",
"api"
],
"main": "dist/index.js",
"bin": "dist/cli.js",
"scripts": {
"eslint": "eslint src test",
"build": "babel src/ -d dist/",
"prepare": "yarn build",
"pretest": "yarn build && yarn eslint",
"test": "jest --coverage --verbose",
"test-debug": "DEBUG=mobile-locator yarn test -- --runInBand",
"test-coveralls": "yarn test-debug && yarn coveralls",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf ./log/* ./coverage ./dist"
},
"engines": {
"node": ">=4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.1.4"
},
"dependencies": {
"bluebird": "^3.5.1",
"commander": "^2.13.0",
"debug": "^3.1.0",
"lodash": "^4.17.4",
"request-promise": "^4.2.2"
}
}