snazzy-crawler
Version:
A snazzy light Node.js image crawler laced with TypeScript goodness! 🕵️🦾
50 lines (49 loc) • 1.36 kB
JSON
{
"name": "snazzy-crawler",
"version": "1.2.8",
"description": "A snazzy light Node.js image crawler laced with TypeScript goodness! 🕵️🦾",
"type": "module",
"license": "ISC",
"keywords": [
"web-crawler",
"crawler",
"image-crawler"
],
"author": "Let Avocado <letavocado@gmail.com>",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"start": "nodemon --exec ts-node src/bin/crawler.ts",
"prepack": "npm run lint && tsc",
"clean": "rimraf ./build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent --forceExit",
"lint": "npx eslint ./src",
"format": "npx eslint ./src --fix"
},
"bin": {
"snazzy-crawler": "./dist/bin/crawler.js"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"inquirer": "^9.2.7",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"puppeteer": "^20.5.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}