72 lines
1.6 KiB
JSON
72 lines
1.6 KiB
JSON
{
|
|
"name": "adsb-index",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"description": "ADS-B indexing script",
|
|
"bin": "bin/index.js",
|
|
"scripts": {
|
|
"lint": "eslint '*.{js,mjs}' 'src/**/*.{js,mjs}' 'bin/**/*.{js,mjs}'",
|
|
"precommit": "lint-staged",
|
|
"version": "npm-auto-version"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/w33ble/adsb-index.git"
|
|
},
|
|
"keywords": [],
|
|
"files": [
|
|
"src/",
|
|
"index.js",
|
|
"index.mjs",
|
|
"CHANGELOG.md",
|
|
"AUTHORS.md"
|
|
],
|
|
"author": "Joe Fleming (https://github.com/w33ble)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/w33ble/adsb-index/issues"
|
|
},
|
|
"homepage": "https://github.com/w33ble/adsb-index",
|
|
"lint-staged": {
|
|
"ignore": [
|
|
"package.json"
|
|
],
|
|
"linters": {
|
|
"*.{js,mjs}": [
|
|
"eslint --fix"
|
|
],
|
|
"*.{js,mjs,json,css}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"esm": {
|
|
"cjs": true
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.18.0",
|
|
"elasticsearch": "^15.2.0",
|
|
"esm": "^3.0.17",
|
|
"getopts": "^2.2.2",
|
|
"interval-promise": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@w33ble/npm-auto-tools": "*",
|
|
"eslint": "^4.9.0",
|
|
"eslint-config-airbnb": "^16.1.0",
|
|
"eslint-config-prettier": "^2.9.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-jsx-a11y": "^6.0.2",
|
|
"eslint-plugin-prettier": "^2.3.1",
|
|
"eslint-plugin-react": "^7.1.0",
|
|
"husky": "^0.14.3",
|
|
"lint-staged": "^7.0.4",
|
|
"prettier": "^1.9.0"
|
|
}
|
|
}
|