-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "geospatialdraw",
"version": "0.5.8",
"private": true,
"description": "Geospatial Map Drawing Library",
"types": "bin/index.d.ts",
"main": "bin/index.js",
"author": "Connexta LLC",
"license": "LGPL-3.0",
"homepage": "https://github.com/connexta/geospatialdraw",
"keywords": [
"catography",
"coordinate",
"coordinates",
"drawing",
"geospatial",
"gps",
"lat/long",
"latitude",
"longitude",
"map",
"mapping",
"mgrs",
"primative",
"usng",
"utm"
],
"repository": {
"type": "git",
"url": "git://github.com/connexta/geospatialdraw.git"
},
"engines": {
"node": ">=0.10.5"
},
"scripts": {
"copy:package": "cpx package.json distribution && json -I -f distribution/package.json -e 'this.private=false'",
"fmt": "prettier --write '{./lib/**/*.js,./lib/**/*.tsx}'",
"pretest": "prettier --check '{./lib/**/*.js,./lib/**/*.tsx}'",
"test": "mocha -r esm -r jsdom-global/register ./tests",
"prebuild": "rimraf ./distribution && yarn copy:package",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc",
"build:verify": "yarn run fmt && yarn run build && yarn run test",
"build:all": "yarn run build:verify && yarn run build:docs",
"publish:npm": "yarn build:all && npm publish distribution"
},
"dependencies": {
"@turf/turf": "5.1.6",
"usng.js": "0.4.2"
},
"devDependencies": {
"@emotion/core": "10.0.22",
"@emotion/styled": "10.0.23",
"@turf/nearest-point-to-line": "6.0.0",
"@turf/point-to-line-distance": "6.0.0",
"@types/ol": "5.3.6",
"@types/styled-components": "4.1.8",
"canvas": "2.6.1",
"chai": "4.2.0",
"cpx": "1.5.0",
"emotion-theming": "10.0.19",
"emotion": "10.0.23",
"enzyme-adapter-react-16": "1.15.1",
"enzyme": "3.10.0",
"esm": "3.2.25",
"jsdom-global": "3.0.2",
"jsdom": "15.2.1",
"json": "9.0.6",
"mocha": "7.0.0",
"ol": "6.0.1",
"prettier": "1.19.1",
"prismjs": "1.17.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"recompose": "0.30.0",
"rimraf": "3.0.0",
"typedoc": "0.15.0",
"typescript-bundle": "1.0.16"
},
"peerDependencies": {
"ol": "6.x",
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}