-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 1.86 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
{
"name": "nodes2ts",
"version": "3.0.0",
"description": "a Typescript porting of the great S2 Geometry library from Google ",
"main": "dist/export.js",
"homepage": "https://github.com/vekexasia/nodes2-ts",
"repository": {
"type": "git",
"url": "https://github.com/vekexasia/nodes2-ts"
},
"keywords": [
"s2",
"s2 geometry",
"s2geometry",
"geohash"
],
"scripts": {
"test": "cross-env NODE_ENV=test mocha",
"lint": "eslint .",
"wtest": "cross-env NODE_ENV=test nodemon -q -e ts --exec npm run test",
"cover": "cross-env NODE_ENV=test nyc npm t",
"prepublish": "shx rm -rf ./dist/ && npm run build",
"clean": "shx rm -rf ./dist",
"build": "tsc -d",
"//postinstall": "npm run prepublish"
},
"typings": "./dist/export.d.ts",
"author": {
"url": "http://www.andreabaccega.com/",
"email": "[email protected]",
"name": "Andrea Baccega"
},
"license": "MIT",
"dependencies": {
"long": "^4.0.0",
"math-float64-exponent": "^1.0.0"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/gulp": "4.0.9",
"@types/long": "^4.0.0",
"@types/mocha": "9.1.1",
"@types/sinon": "10.0.11",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chai": "4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"gulp": "4.0.2",
"gulp-spawn-mocha": "6.0.0",
"gulp-watch": "5.0.1",
"karma": "6.4.0",
"mocha": "10.0.0",
"nodemon": "2.0.16",
"nyc": "15.1.0",
"shx": "0.3.4",
"sinon": "14.0.0",
"ts-node": "10.8.1",
"typescript": "^4.7.3"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"typings"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html"
],
"all": false
}
}