-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.41 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
{
"name": "ginkgoch-geom",
"version": "1.11.1",
"description": "This project provides the basic functions for geometries. It allows to convert between `wkt`, `wkb`, `json` and our `well formatted geometry classes` to construct `Point`, `LineString`, `Polygon`, `MultiPoint`, `MultiLineString`, `MultiPolygon` and `GeometryCollection`. It is also a baseline project for building the entire `Ginkgoch Ecosystem`.",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Ginkgoch",
"email": "ginkgoch@outlook.com",
"url": "https://ginkgoch.com"
},
"repository": {
"type": "github",
"url": "https://github.com/ginkgoch/node-geom"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "rm -rf dist && ./node_modules/.bin/webpack",
"doc": "rm -rf docs && ./node_modules/.bin/typedoc --out docs --module commonjs --mode file ./src",
"clean": "rm -rf dist && rm -rf built"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typedoc": "^0.15.0",
"typescript": "^3.5.3",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"@types/jsts": "^0.17.0",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"ginkgoch-buffer-io": "^1.1.3",
"jsts": "^2.0.6",
"lodash": "^4.17.15"
}
}