-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "geojson-bounding-box",
"version": "0.2.0",
"description": "Efficiently computes a GeoJSON's bounding box.",
"main": "geojson-bounding-box.js",
"module": "index.js",
"unpkg": "geojson-bounding-box.min.js",
"jsdelivr": "geojson-bounding-box.min.js",
"scripts": {
"build": "run-s lint bundle",
"bundle": "rollup --silent -c",
"lint": "run-s lint:js lint:md",
"lint:js": "eslint index.js rollup.config.js",
"lint:md": "remark -q .",
"prepare": "npm run build",
"test": "run-s test:lint test:build",
"test:build": "nyc --reporter=lcov --reporter=text tap ./test/test.js",
"test:lint": "eslint ./test/test.js"
},
"files": [
"index.js",
"geojson-bounding-box.js",
"geojson-bounding-box.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dpmcmlxxvi/geojson-bounding-box.git"
},
"keywords": [
"GeoJSON",
"bounding",
"box",
"bbox"
],
"author": "Daniel Pulido <dpmcmlxxvi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dpmcmlxxvi/geojson-bounding-box/issues"
},
"homepage": "https://github.com/dpmcmlxxvi/geojson-bounding-box#readme",
"devDependencies": {
"coveralls": "^3.0.4",
"eslint": "^6.0.0",
"eslint-config-google": "^0.14.0",
"np": "^6.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"remark-cli": "^8.0.0",
"remark-preset-lint-markdown-style-guide": "^3.0.0",
"rollup": "^2.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-terser": "^5.0.0",
"tap": "^14.2.2"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-markdown-style-guide"
]
}
}