-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.32 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
{
"bugs": {
"url": "https://github.com/drmats/aeria/issues"
},
"contributors": [
{
"name": "drmats",
"email": "xcmats@protonmail.com",
"url": "https://twitter.com/xcmats/"
}
],
"dependencies": {
"@xcmats/js-toolbox": "0.14.3",
"getopts": "2.3.0",
"luxon": "2.3.0"
},
"description": "Flightlog.",
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/eslint-parser": "7.16.5",
"@babel/preset-env": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@types/luxon": "2.0.9",
"@types/node": "17.0.8",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"babel-loader": "8.2.3",
"cross-env": "7.0.3",
"eslint": "8.6.0",
"eslint-plugin-import": "2.25.4",
"eslint-webpack-plugin": "3.1.1",
"nodemon": "2.0.15",
"rimraf": "3.0.2",
"terser-webpack-plugin": "5.3.0",
"typescript": "4.5.4",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
"webpack-node-externals": "3.0.0"
},
"files": [
"src"
],
"homepage": "https://github.com/drmats/aeria",
"keywords": [
"flightlog",
"igc"
],
"license": "Apache-2.0",
"name": "@xcmats/aeria",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drmats/aeria.git"
},
"scripts": {
"build": "npm run test && cross-env BABEL_ENV=production webpack --progress --config=webpack.config.prod.js",
"build:dev": "cross-env BABEL_ENV=development webpack --progress --config=webpack.config.dev.js",
"build:types": "tsc --emitDeclarationOnly",
"contBuild": "nodemon -e js,ts --watch ./src/ --exec \"npm run build:dev\"",
"clean": "rimraf ./dist",
"clean:modules": "rimraf package-lock.json && rimraf node_modules",
"lint": "echo \"Linting and typechecking...\" && eslint ./src/ --ext .js,.ts && npm run type-check",
"start": "node ./dist/aeria.js",
"test": "npm run lint && echo \"Warning: no tests specified (yet)\"",
"type-check": "tsc --noEmit"
},
"sideEffects": false,
"version": "0.0.1"
}