This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
packwatch/package.json
Marc Cataford 2ec9c0e533
build: transition to Typescript without Babel (#252)
* build: ts-jest

* build: yarn latest

* build: no babel

* chore: lint

* refactor: test, types
2021-06-05 11:29:15 -04:00

58 lines
1.7 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": "eslint tests/**/*.ts src/**/*.ts",
"lint:fix": "yarn lint --fix",
"test": "jest tests",
"test:watch": "yarn test --watchAll",
"test:coverage": "yarn test --coverage",
"types": "tsc --noEmit src/**/*.ts",
"types:watch": "yarn types --watch"
},
"devDependencies": {
"@tophat/eslint-config": "^0.7.0",
"@types/jest": "26.0.23",
"@types/node": "14.17.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.4",
"prettier": "2.3.1",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2"
}
}