check-export-map
Version:
Check if entries in an export map in package.json are valid and point to actual files/folders
47 lines (46 loc) • 1.07 kB
JSON
{
"name": "check-export-map",
"version": "1.3.1",
"description": "Check if entries in an export map in package.json are valid and point to actual files/folders",
"main": "src/index.js",
"bin": "src/cli.js",
"scripts": {
"prepare": "husky install",
"test": "mocha --extension json --watch-files test/,src/ test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/marvinhagemeister/check-export-map.git"
},
"author": "Marvin Hagemeister <hello@marvinh.dev>",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.18.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"mocha": "^9.1.3",
"prettier": "^2.4.1"
},
"dependencies": {
"kolorist": "^1.5.0",
"mri": "^1.2.0"
},
"prettier": {
"useTabs": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}