-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "vandelay-util",
"version": "3.15.0",
"description": "Grab bag of utilities for vandelay transform functions",
"main": "dist/index.js",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/staeco/vandelay-util.git"
},
"contributors": [
"Contra <[email protected]> (http://contra.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/staeco/vandelay-util/issues"
},
"homepage": "https://github.com/staeco/vandelay-util#readme",
"files": [
"dist"
],
"scripts": {
"preversion": "npm run clean && npm run build",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src test --fix",
"test": "mocha --require @babel/register --recursive --reporter spec --exit --timeout 30000",
"test:debug": "mocha --inspect-brk=0.0.0.0 --require @babel/register --recursive --reporter spec --timeout 30000"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/register": "^7.10.5",
"@stae/babel-node": "^1.0.3",
"@stae/linters": "^1.0.1",
"mocha": "^10.0.0",
"rimraf": "^3.0.0",
"should": "^13.0.0"
},
"dependencies": {
"@mapbox/polyline": "^1.0.0",
"@sindresorhus/slugify": "^1.0.0",
"@turf/turf": "^6.0.0",
"aguid": "^2.0.0",
"camelcase": "^6.0.0",
"capitalize": "^2.0.0",
"convert-units": "^2.3.4",
"decamelize": "^5.0.0",
"gdal-async": "^3.0.0",
"geo-tz": "^7.0.0",
"geojson-precision": "^1.0.0",
"is-sea": "github:contra/is-sea",
"lodash": "^4.17.4",
"moize": "^6.0.0",
"moment-timezone": "^0.5.17",
"numeral": "^2.0.6",
"phone": "^2.2.0",
"require-dir": "^1.0.0",
"simplify-geojson": "^1.0.3",
"stae": "^2.1.0",
"superagent": "^7.0.0",
"validator": "^13.0.0",
"wkx": "^0.5.0"
}
}