-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
{
"name": "egm96-universal",
"version": "1.1.1",
"description": "A library to convert between EGM96-relative altitudes and WGS84 ellipsoid-relative altitudes",
"main": "dist/egm96-universal.cjs.js",
"module": "dist/egm96-universal.esm.js",
"files": [
"dist",
"README.md",
"LICENSE.md",
"index.d.ts"
],
"targets": {
"main": false,
"module": false,
"types": false
},
"scripts": {
"prebuild": "npm run convert-data",
"convert-data": "node ./convertDataFile.js",
"test": "npm run prebuild && npm run lint && npm run jest",
"lint": "npm run prebuild && eslint \"*.js\" \"src/**/*.js\"",
"jest": "npm run prebuild && jest --config=./jest.config.js --coverage",
"build": "npm run rollup",
"rollup": "rollup -c",
"website-build": "npm run prebuild && parcel build demo/index.html --dist-dir public --public-url ./",
"website-dev": "npm run prebuild && parcel serve demo/index.html --dist-dir public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolas-van/egm96-universal.git"
},
"keywords": [
"egm96",
"map",
"wgs84",
"ellipsoid",
"coordinate",
"altitude",
"earth",
"gravity",
"model",
"1996",
"cesium"
],
"author": "Nicolas Vanhoren",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicolas-van/egm96-universal/issues"
},
"homepage": "https://github.com/nicolas-van/egm96-universal#readme",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/nicolas-van"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^36.0.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.0.6",
"lodash": "^4.17.21",
"parcel": "^2.12.0",
"rollup": "^2.56.3"
},
"dependencies": {
"rfc4648": "^1.5.0"
},
"types": "index.d.ts"
}