js-quizzes
Version:
A simple JavaScript quizzes program.
54 lines • 1.17 kB
JSON
{
"name": "js-quizzes",
"version": "14.0.0",
"description": "A simple JavaScript quizzes program.",
"main": "index.js",
"type": "module",
"preferGlobal": true,
"bin": {
"js-quizzes": "index.js"
},
"publishConfig": {
"ignore": [
".codesandbox/",
"jsconfig.json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MessiInter/js-quizzes.git"
},
"keywords": [
"javascript",
"quizzes",
"js",
"quiz"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.10.0",
"yarn": "<=0.0.0"
},
"author": "messiinter",
"license": "MIT",
"bugs": {
"url": "https://github.com/MessiInter/js-quizzes/issues"
},
"homepage": "https://github.com/MessiInter/js-quizzes#readme",
"dependencies": {
"@clack/prompts": "^0.6.3",
"boxen": "^7.1.1",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20.4.8",
"nodemon": "^3.0.1",
"npmignore": "^0.3.0"
},
"scripts": {
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"publish-npmjs": "pnpm publish --no-git-checks || npm publish",
"dev": "nodemon ."
}
}