quizEngine/package.json

31 lines
806 B
JSON
Raw Permalink Normal View History

2021-07-04 12:26:38 +03:00
{
"name": "quizEngine",
"version": "0.0.1",
"description": "",
2021-07-06 03:31:10 +03:00
"main": "./js/engine.js",
2021-07-04 12:26:38 +03:00
"scripts": {
2021-07-06 03:31:10 +03:00
"start": "webpack serve",
"build": "webpack --mode=production",
2021-07-08 00:45:43 +03:00
"docs": "documentation build ./js -f md --markdown-toc=false -o docs/DOCS.md",
2021-07-04 12:26:38 +03:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilecok/quizEngine.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilecok/quizEngine/issues"
},
"homepage": "https://github.com/emilecok/quizEngine#readme",
"devDependencies": {
2021-07-04 18:07:44 +03:00
"docsify-cli": "^4.4.3",
2021-07-08 00:45:43 +03:00
"documentation": "^13.2.5",
2021-07-04 18:07:44 +03:00
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
2021-07-04 12:26:38 +03:00
}
}