49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "packwatch",
|
|
"version": "0.0.0",
|
|
"main": "dist/cli.js",
|
|
"description": "📦👀 Keep an eye on your packages' footprint",
|
|
"keywords": [
|
|
"npm",
|
|
"footprint",
|
|
"package size",
|
|
"package",
|
|
"publish",
|
|
"dependencies"
|
|
],
|
|
"homepage": "https://github.com/mcataford/packwatch#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/mcataford/packwatch/issues",
|
|
"email": "c.marcandre@gmail.com"
|
|
},
|
|
"author": "Marc Cataford <c.marcandre@gmail.com>",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist/*.js"
|
|
],
|
|
"bin": "./dist/cli.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mcataford/packwatch.git"
|
|
},
|
|
"scripts": {
|
|
"prepack": "yarn build",
|
|
"prebuild": "rm -rf dist",
|
|
"build": "tsc --project .",
|
|
"lint": "yarn rome format src tests && yarn rome check src tests",
|
|
"lint:fix": "yarn rome format src tests --write && yarn rome check src tests --apply",
|
|
"test": "jest tests",
|
|
"test:watch": "yarn test --watchAll",
|
|
"test:coverage": "yarn test --coverage",
|
|
"types": "tsc --noEmit src/**/*.ts",
|
|
"types:watch": "yarn types --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^18.15.5",
|
|
"jest": "^29.5.0",
|
|
"@biomejs/biome": "^1.0.0",
|
|
"ts-jest": "^29.0.5",
|
|
"typescript": "^4.3.0"
|
|
}
|
|
}
|