node-vehicle-logos
Version:
A collection of vehicle manufacturer logos
56 lines (55 loc) • 1.57 kB
JSON
{
"name": "node-vehicle-logos",
"version": "0.1.0",
"description": "A collection of vehicle manufacturer logos",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"build-makes": "tsx ./build-makes.ts",
"lint": "eslint ./src --ext .ts",
"prebuild": "npm run build-makes && npm run lint",
"build": "tsc",
"test": "mocha --timeout 10000 --import=tsx src/**/*.spec.ts --exit",
"coverage": "typescript-coverage-report",
"prepublishOnly": "npm run lint && npm test && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tipstrade/node-vehicle-logos.git"
},
"keywords": [
"Node",
"Motortrade",
"Manufacturer",
"Vehicle",
"Logos"
],
"author": "John Bayly",
"license": "MIT",
"bugs": {
"url": "https://github.com/tipstrade/node-vehicle-logos/issues"
},
"homepage": "https://github.com/tipstrade/node-vehicle-logos#readme",
"devDependencies": {
"@types/chai": "^5.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "^5.2.0",
"eslint": "^8.14.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"mocha": "^11.1.0",
"tsx": "^4.19.3",
"typescript": "^4.9.5",
"typescript-coverage-report": "^1.1.1"
},
"files": [
"dist/**/*",
"assets"
]
}