-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "gthash",
"version": "0.1.1",
"author": "Chris Chares",
"keywords": [
"geohash",
"geotemporal",
"hash",
"gthash",
"spacial",
"temporal"
],
"description": "Geotemporal hashing function based on geohash and z-order curves. The resulting string hash encodes time and space on Earth with variable precision and all other characteristics of a geohash. Comes with Typescript definitions",
"homepage": "https://github.com/ChrisChares/gthash/tree/master",
"repository": "github:chrischares/gthash",
"bugs": {
"url": "https://github.com/ChrisChares/gthash/issues"
},
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node index.ts",
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^9.6.11",
"coveralls": "^3.0.1",
"jest": "^22.4.3",
"ts-jest": "^22.4.4",
"ts-node": "^6.0.2",
"typescript": "^2.8.3"
}
}