-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "@zenlocator/geo",
"description": "geo lib",
"version": "0.1.6",
"homepage": "https://github.com/zenlocator/geo",
"author": {
"name": "Ivan Akimov",
"email": "ivan@zenlocator.com",
"url": "https://zenlocator.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenlocator/geo.git"
},
"bugs": {
"url": "https://github.com/zenlocator/geo/issues"
},
"main": "dist/geo.js",
"bin": {
"geo": "cli.js"
},
"scripts": {
"lint": "eslint lib tests cli.js",
"test": "ava tests --color --verbose",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"rollup": "rollup lib/index.js -c rollup.config.js -o dist/geo.js",
"minify": "uglifyjs dist/geo.js -o dist/geo.min.js --source-map dist/geo.min.map --compress --mangle",
"build": "npm run rollup && npm run minify && npm test",
"clean": "rm -rf coverage .nyc_output npm-debug.log",
"all": "npm run lint && npm run coverage && npm run build && npm run clean"
},
"license": "MIT",
"devDependencies": {
"ava": "^0.22.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-runtime": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"nyc": "^11.1.0",
"rollup": "^0.48.2",
"rollup-plugin-babel": "^3.0.2",
"tap-nyan": "^1.1.0",
"uglify-js": "^3.0.28"
},
"keywords": [
"geo",
"geospatial",
"geography",
"geolib"
],
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.9.0"
}
}