2022-11-06 05:46:23 +00:00
|
|
|
{
|
2022-11-29 16:15:59 +00:00
|
|
|
"name": "food-journal",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
|
|
|
"test": "mocha --recursive --require mock-local-storage './{,!(node_modules)/**}/*.test.js'",
|
2022-12-05 03:44:30 +00:00
|
|
|
"coverage": "c8 --check-coverage --lines 90 --functions 90 --branches 90 npm run test",
|
2022-11-29 16:15:59 +00:00
|
|
|
"lint-js": "eslint **/*.js",
|
|
|
|
"fix-js": "eslint --fix **/*.js",
|
|
|
|
"lint-html": "htmlhint **/*.html",
|
|
|
|
"lint-css": "stylelint **/*.css",
|
|
|
|
"fix-css": "stylelint --fix **/*.css",
|
|
|
|
"http-server": "http-server source",
|
|
|
|
"lint-prettier": "prettier --check .",
|
2022-12-03 20:49:16 +00:00
|
|
|
"fix-prettier": "prettier --write .",
|
|
|
|
"js-doc": "jsdoc -d source/docs/ -r source/"
|
2022-11-29 16:15:59 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-05 03:38:52 +00:00
|
|
|
"c8": "^7.12.0",
|
2022-11-29 16:15:59 +00:00
|
|
|
"eslint": "^8.27.0",
|
|
|
|
"htmlhint": "1.1.4",
|
|
|
|
"http-server": "",
|
|
|
|
"mocha": "10",
|
|
|
|
"mock-local-storage": "^1.1.23",
|
|
|
|
"prettier": "2.8.0",
|
|
|
|
"puppeteer": "^18.2.1",
|
|
|
|
"stylelint": "14.14.1",
|
|
|
|
"stylelint-config-standard": "^29.0.0"
|
2022-12-02 01:16:47 +00:00
|
|
|
}
|
2022-12-03 02:02:52 +00:00
|
|
|
}
|