-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 981 Bytes
/
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
{
"name": "msfs-geo",
"version": "0.1.0-alpha5",
"description": "A set of geographic mathematical utility functions, designed for use in aviation, hence the use of Nautical Miles, Feet, and Degrees",
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "eslint --cache **/*.{js,ts}",
"test": "jest",
"prepublishOnly": "npm run build"
},
"author": "FlyByWire Simulations and Synaptic Simulations",
"license": "GPL-3.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"mathjs": "^10.1.0"
},
"devDependencies": {
"@flybywiresim/eslint-config": "^0.2.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"rollup": "^2.64.0",
"ts-jest": "^27.1.3",
"tslib": "^1.14.1",
"typescript": "^4.5.4"
}
}