cse110-fa22-group29/package.json

17 lines
345 B
JSON
Raw Normal View History

{
2022-11-06 22:39:30 +00:00
"name": "food-journal",
"version": "1.0.0",
"scripts": {
"test": "mocha --recursive './{,!(node_modules)/**}/*.test.js'",
"lint": "eslint '**/*.js'",
"fix-style": "eslint --fix **/*.js"
2022-11-10 22:16:42 +00:00
},
"html": {
"lintHTML": "npx htmlhint '**/*.html'",
},
"devDependencies": {
"eslint": "^8.27.0",
"mocha": "10"
}
}