-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.43 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
{
"name": "geokit",
"version": "1.1.0",
"description": "An assortment of geolocation related tools, all packaged in one easy to use kit.",
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"docs": "typedoc --out docs/ src/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc --reporter=html --reporter=text mocha --package package.json --exit",
"lint": "gts check",
"release:major": "npm run build && changelog -M && git add . && git commit -m 'chore(release): major version release' && npm version major && git push origin && git push origin --tags",
"release:minor": "npm run build && changelog -m && git add . && git commit -m 'chore(release): minor version release' && npm version minor && git push origin && git push origin --tags",
"release:patch": "npm run build && changelog -p && git add . && git commit -m 'chore(release): patch version release' && npm version patch && git push origin && git push origin --tags",
"prepare": "npm run build"
},
"main": "dist/index.cjs.js",
"browser": "dist/geokit.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"author": "Michael Solati <[email protected]>",
"homepage": "https://geokit.geofirestore.com",
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelSolati/geokit.git"
},
"bugs": {
"url": "https://github.com/MichaelSolati/geokit/issues"
},
"readme": "README.md",
"license": "MIT",
"keywords": [
"geo",
"coordinates",
"geohash",
"toolkit",
"distance"
],
"files": [
"dist/**",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"firebase-tools": "^8.4.2",
"generate-changelog": "^1.8.0",
"gts": "^2.0.2",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"rollup": "^2.15.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-node": "^8.10.2",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
},
"mocha": {
"extension": [
"ts"
],
"reporter": "spec",
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/interfaces.ts"
],
"reporter": [
"html"
],
"all": true
}
}