-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "isomorphic-mapzen-search",
"description": "Isomorphic Mapzen search for reuse across our libraries.",
"main": "./dist/index",
"module": "dist/isomorphic-mapzen-search.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsdx build -i index.ts --target node",
"cover": "tsdx test --coverage --coverage-paths index.ts",
"generate-docs": "documentation readme index.ts --document-exported=true -g --section=API",
"lint": "tsdx lint __tests__ index.ts --quiet",
"lint-docs": "documentation lint index.ts",
"prepublish": "yarn build",
"semantic-release": "semantic-release",
"test": "yarn run lint && yarn run lint-docs && yarn run test-node",
"test-node": "tsdx test --test-environment node"
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/conveyal/isomorphic-mapzen-search"
},
"author": "Conveyal",
"license": "MIT",
"bugs": {
"url": "https://github.com/conveyal/isomorphic-mapzen-search/issues"
},
"homepage": "https://github.com/conveyal/isomorphic-mapzen-search",
"dependencies": {
"@conveyal/lonlat": "^1.4.1",
"isomorphic-fetch": "^3.0.0",
"qs": "^6.3.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.8",
"@types/leaflet": "^1.7.3",
"@types/node-fetch": "^2.5.11",
"@types/qs": "^6.9.6",
"documentation": "^13.2.5",
"nock": "^13.1.1",
"semantic-release": "^17.2.3",
"tsdx": "https://github.com/ibi-group/tsdx"
},
"jest": {
"testURL": "http://localhost"
}
}