75 líneas
1.8 KiB
JSON
75 líneas
1.8 KiB
JSON
{
|
|
"name": "alepm",
|
|
"version": "1.0.2",
|
|
"description": "Advanced and secure Node.js package manager with binary storage, intelligent caching, and comprehensive security features",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"alepm": "src/cli.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/cli.js",
|
|
"test": "jest",
|
|
"lint": "eslint src/",
|
|
"prepublishOnly": "npm test && npm run lint",
|
|
"postinstall": "echo 'Thanks for installing alepm! Run: alepm --help to get started.'",
|
|
"hello": "echo 'Hello from alepm!'",
|
|
"date": "date",
|
|
"version": "echo 'alepm version:' && node -e \"console.log(require('./package.json').version)\""
|
|
},
|
|
"keywords": [
|
|
"package-manager",
|
|
"node",
|
|
"npm",
|
|
"security",
|
|
"binary-storage",
|
|
"cache",
|
|
"integrity",
|
|
"vulnerability",
|
|
"lock-file",
|
|
"dependency-management"
|
|
],
|
|
"author": {
|
|
"name": "ale",
|
|
"email": "ale@manalejandro.com"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/manalejandro/alepm#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/manalejandro/alepm.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/manalejandro/alepm/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"LICENSE",
|
|
"README.md",
|
|
"IMPLEMENTATION.md"
|
|
],
|
|
"dependencies": {
|
|
"body-parser": "^2.2.0",
|
|
"chalk": "^4.1.2",
|
|
"commander": "^11.1.0",
|
|
"crypto": "^1.0.1",
|
|
"debug": "^4.4.1",
|
|
"express": "^5.1.0",
|
|
"fs-extra": "^11.3.1",
|
|
"inquirer": "^8.2.6",
|
|
"listr2": "^6.6.1",
|
|
"lodash": "^4.17.21",
|
|
"node-fetch": "^2.6.12",
|
|
"ora": "^5.4.1",
|
|
"semver": "^7.7.2",
|
|
"tar": "^6.2.1",
|
|
"lodash.debounce": "^4.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.45.0",
|
|
"jest": "^29.6.2"
|
|
}
|
|
}
|