forked from uber/geojson2h3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.19 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
{
"name": "geojson2h3",
"description": "Conversion utilities between H3 indexes and GeoJSON",
"version": "1.1.1",
"author": "Nick Rabinowitz <[email protected]>",
"keywords": [
"h3",
"hexagon",
"geojson"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/uber/geojson2h3.git"
},
"main": "index.js",
"es2015": "lib/geojson2h3.js",
"types": "dist/types.d.ts",
"dependencies": {
"h3-js": "^3.6.1"
},
"devDependencies": {
"@types/geojson": "^7946.0.7",
"benchmark": "^2.1.4",
"buble": "^0.19.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-uber-es2015": "^3.1.2",
"eslint-plugin-prettier": "^2.6.0",
"faucet": "^0.0.1",
"istanbul": "^0.4.3",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"prettier": "^1.19.1",
"tape": "^4.8.0",
"typescript": "^4.1.5"
},
"scripts": {
"lint": "eslint src test",
"cover": "istanbul cover --report lcov --report html -- test/index.js",
"test": "yarn dist-test && yarn lint && yarn test-es6 && yarn test-dist",
"test-raw": "node test/index.js",
"test-es6": "yarn test-raw | faucet",
"test-dist": "node dist/test/index.js | faucet",
"test-ci": "yarn lint && yarn run test-es6 && yarn run test-dist && yarn run check-prettier && yarn run check-docs && yarn run check-types",
"check-prettier": "yarn prettier && git diff --exit-code",
"check-types": "tsc --strict --noEmit types.d.ts",
"check-docs": "yarn build-docs && git diff --exit-code",
"build-docs": "jsdoc2md --no-cache --global-index-format grouped --separators --template doc-files/README.md.tmpl src/geojson2h3.js > README.md",
"dist": "yarn dist-clean && buble -i src -o dist/src && cp types.d.ts dist",
"dist-clean": "rm -rf dist && mkdir dist",
"dist-test": "yarn dist && buble -i test -o dist/test",
"benchmarks": "yarn dist-test && node dist/test/benchmarks.js",
"prepublish": "yarn dist",
"prettier": "prettier --write 'src/**/*.js' 'test/**/*.js' '*.d.ts'"
},
"engines": {
"node": ">=4",
"npm": ">=3",
"yarn": ">=1.3.0"
},
"volta": {
"node": "12.19.0",
"yarn": "1.22.10"
}
}