-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "ecef-utilities",
"version": "1.0.0",
"description": "Package to convert coordinates and velocity vectors between Lat, Lon, Alt and Earth Centered Earth Fixed (ECEF) (X,Y,Z) coordinate systems.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/mule1138/ecef-utilities#readme",
"bugs": {
"url": "https://github.com/mule1138/ecef-utilities/issues"
},
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"build:ts": "tsc",
"watch:ts": "onchange \"./src/*.ts\" -- run-s build:ts",
"watch": "run-p watch:*"
},
"keywords": [
"ECEF",
"WGS84",
"GIS"
],
"author": "Kevin Mueller",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/mule1138/ecef-utilities.git"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"ts-node": "^8.6.0",
"typescript": "^3.7.4"
}
}