50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "@garrettmills/puppeteer",
|
|
"version": "0.1.0",
|
|
"description": "An example of e2e tests using Puppeteer, TypeScript, and Jest",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --runInBand",
|
|
"build": "pnpm run lint && rimraf lib && tsc",
|
|
"app": "pnpm run build && node lib/index.js",
|
|
"prepare": "pnpm run build",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint --fix . --ext .ts"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"prepare": "pnpm run build",
|
|
"postversion": "git push && git push --tags",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://code.garrettmills.dev/garrettmills/puppeteer-e2e"
|
|
},
|
|
"author": "Garrett Mills <shout@garrettmills.dev>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.59.5",
|
|
"@typescript-eslint/parser": "^5.59.5",
|
|
"eslint": "^8.40.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node": "^20.1.4",
|
|
"@types/rimraf": "^3.0.2",
|
|
"@types/uuid": "^8.3.4",
|
|
"dotenv": "^10.0.0",
|
|
"jest": "^29.5.0",
|
|
"mkdirp": "^1.0.4",
|
|
"puppeteer": "^20.2.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5",
|
|
"uuid": "^8.3.2"
|
|
}
|
|
}
|