next-affected
Version:
CLI tool to list Next.js pages affected by changes
56 lines (55 loc) • 1.31 kB
JSON
{
"name": "next-affected",
"version": "1.2.2",
"description": "CLI tool to list Next.js pages affected by changes",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "npm run build"
},
"bin": {
"next-affected": "./dist/index.js"
},
"keywords": [
"next.js",
"cli",
"affected",
"pages"
],
"author": "J.P.Navarro",
"license": "ISC",
"files": [
"dist/**/*"
],
"dependencies": {
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"commander": "^14.0.0",
"glob": "^11.0.3",
"madge": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/jest": "^30.0.0",
"@types/madge": "^5.0.3",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"jest": "^30.0.5",
"ts-jest": "^29.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.38.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bubablue/next-affected.git"
},
"bugs": {
"url": "https://github.com/bubablue/next-affected/issues"
},
"homepage": "https://github.com/bubablue/next-affected#readme"
}