-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 847 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 847 Bytes
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
{
"name": "s2js",
"description": "javascript port of s2 geometry",
"version": "0.0.0-development",
"author": "Peter Johnson",
"license": "Apache-2.0",
"repository": "github:missinglink/s2js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/s2js.esm.js",
"scripts": {
"build": "npx --yes tsdx@^0 build --entry index.ts",
"docs": "npx --yes typedoc",
"test": "node --import tsx --test [^_]**/[^_]*_test.ts",
"coverage": "npx c8 npm test",
"lint": "npx prettier --check .",
"format": "npx prettier --write .",
"pre-commit": "npx lint-staged"
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/node": "^20.14.11",
"tsx": "^4.16.2"
},
"dependencies": {
"bigfloat": "^0.1.1"
},
"lint-staged": {
"*.{ts,md}": "prettier --write"
}
}