Files
fredy/package.json

66 lines
1.4 KiB
JSON
Raw Normal View History

2018-01-20 20:23:27 +01:00
{
"name": "fredy",
"version": "2.0.0",
2018-01-20 20:23:27 +01:00
"description": "[F]ind [R]eal [E]states [d]amn eas[y].",
"scripts": {
"start": "node index.js",
"format": "prettier --write lib/**/*.js test/**/*.js *.js --single-quote --print-width 120",
2020-06-10 15:27:08 +02:00
"test": "mocha --timeout 20000 test/**/*.test.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint ./index.js ./lib/**/*.js ./test/**/*.js",
"prettier --single-quote --print-width 120 --write"
]
2018-01-20 20:23:27 +01:00
},
"main": "index.js",
"author": "Christian Kellner",
"keywords": [
"flat",
"flatfinder",
"fredy",
"real estates",
"germany",
"apartment",
"house",
"rent",
"immoscout",
"immonet",
"immowelt",
"immobilienscout24"
],
"bugs": {
"url": "https://github.com/orangecoding/fredy/issues"
},
"license": "MIT",
"engines": {
"node": ">=11.0.0",
"npm": ">=6.0.0"
},
2018-01-20 20:23:27 +01:00
"dependencies": {
2020-07-17 15:39:11 +02:00
"@sendgrid/mail": "^7.2.1",
"body-parser": "1.19.0",
2019-06-10 14:56:09 +02:00
"lowdb": "1.0.0",
"request-x-ray": "0.1.4",
2020-07-17 15:39:11 +02:00
"restana": "4.6.2",
"slack": "11.0.2",
2019-06-10 14:56:09 +02:00
"tg-yarl": "1.3.0",
"x-ray": "2.3.4"
2018-01-20 20:23:27 +01:00
},
"devDependencies": {
"chai": "4.2.0",
2020-07-17 15:39:11 +02:00
"eslint": "7.4.0",
2020-05-10 13:14:57 +02:00
"eslint-config-prettier": "6.11.0",
2020-04-11 10:44:57 +02:00
"husky": "4.2.5",
"lint-staged": "10.2.11",
"mocha": "8.0.1",
2020-05-10 13:14:57 +02:00
"prettier": "2.0.5",
"proxyquire": "2.1.3"
2018-01-20 20:23:27 +01:00
}
}