npm-license-checker
Version:
A lightweight and easy-to-use command-line tool for checking and displaying the licenses of npm packages
47 lines (46 loc) • 1.24 kB
JSON
{
"name": "npm-license-checker",
"version": "2.0.2",
"description": "A lightweight and easy-to-use command-line tool for checking and displaying the licenses of npm packages",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{ts,md,json}\"",
"prepare": "npm run build"
},
"keywords": [
"licenses",
"npm licenses checker",
"npm-license-checker",
"license-checker",
"license-report",
"license-reporter",
"license-reporter-cli"
],
"author": "Pasupol Bunsaen",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"bin": {
"npm-license-checker": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/niawjunior/npm-license-checker.git"
},
"dependencies": {
"commander": "^11.0.0"
}
}