-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "@conveyal/lonlat",
"description": "Lon/lat normalization",
"main": "dist/index.js",
"module": "dist/lonlat.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsdx build -i index.ts --target node",
"cover": "yarn jest --coverage --collectCoverageFrom=index.ts",
"generate-docs": "documentation readme index.ts --parse-extension ts --section=API --markdown-toc=true",
"jest": "tsdx test",
"lint": "tsdx lint index.ts index.test.ts",
"lint-docs": "documentation lint index.ts",
"prepare": "tsdx build -i index.ts --target node",
"pretest": "yarn",
"semantic-release": "semantic-release",
"test": "yarn run lint && yarn run jest && yarn run lint-docs",
"commit": "tsdx commit"
},
"repository": {
"type": "git",
"url": "https://github.com/conveyal/lonlat"
},
"keywords": [
"lat",
"lon",
"lng",
"coordinate",
"point"
],
"author": "Conveyal",
"license": "MIT",
"bugs": {
"url": "https://github.com/conveyal/lonlat/issues"
},
"homepage": "https://github.com/conveyal/lonlat",
"devDependencies": {
"@types/geojson": "^7946.0.8",
"@types/leaflet": "^1.7.3",
"@types/node": "^16.3.1",
"documentation": "^13.2.5",
"eslint": "^7.30.0",
"semantic-release": "^17.4.4",
"tsdx": "https://github.com/ibi-group/tsdx#v0.15.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"version": "0.0.0-development"
}