initial commit

This commit is contained in:
2018-11-01 15:20:53 -07:00
commit 2067fd63ca
13 changed files with 2885 additions and 0 deletions

68
package.json Normal file
View File

@@ -0,0 +1,68 @@
{
"name": "adsb-index",
"version": "0.0.0",
"description": "ADS-B indexing script",
"main": "index",
"module": "index.mjs",
"scripts": {
"lint": "eslint '*.{js,mjs}' 'src/**/*.{js,mjs}'",
"precommit": "lint-staged",
"version": "npm-auto-version",
"start": "node ."
},
"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": {
"esm": "^3.0.17"
},
"devDependencies": {
"@w33ble/npm-auto-tools": "*",
"eslint": "^4.9.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"prettier": "^1.9.0"
}
}