mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-09 21:24:44 +00:00
8b2ae89bd2
fix unit tests to work with ES6 import syntax, remove testenv module
16 lines
369 B
JSON
16 lines
369 B
JSON
{
|
|
"name": "food-journal",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "mocha --recursive --require mock-local-storage './{,!(node_modules)/**}/*.test.js'",
|
|
"lint": "eslint **/*.js",
|
|
"fix-style": "eslint --fix '**/*.js'"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.27.0",
|
|
"mocha": "10",
|
|
"mock-local-storage": "^1.1.23"
|
|
}
|
|
}
|