mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-12-27 09:29:10 +00:00
a6015aff3b
fix linting errors in testenv module Signed-off-by: Arthur Lu <learthurgo@gmail.com>
18 lines
411 B
JSON
18 lines
411 B
JSON
{
|
|
"name": "food-journal",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"test": "mocha --recursive **/*.test.js",
|
|
"lint": "eslint **/*.js",
|
|
"fix-style": "eslint --fix **/*.js"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.27.0",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-n": "^15.5.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"mocha": "10"
|
|
}
|
|
}
|