Commits on Source (2)
-
Esbjörn Blomquist authored560b6eb9
-
Esbjörn Blomquist authored17528c26
.eslintcache
deleted
100644 → 0
This diff is collapsed.
{ | ||
"name": "i4-js-commons", | ||
"version": "3.9.8", | ||
"version": "3.9.9", | ||
"description": "Just a load of common stuff for i4 front-ends and some probably usable in back-end as well", | ||
"dependencies": { | ||
"@material-ui/core": "^4.8.0", | ||
... | ... | @@ -65,9 +65,11 @@ |
}, | ||
"scripts": { | ||
"docgen": "jsdoc2md src/* > docs/lib.md", | ||
"lint": "eslint --cache src", | ||
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{js,mjs}\"", | ||
"prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{js,mjs}\"", | ||
"eslint": "eslint --ext=ts,js,jsx,tsx .", | ||
"lint": "npm run eslint && npm run lint-check && npm run pretty-check", | ||
"lint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check", | ||
"pretty": "node resources/pretty.js", | ||
"pretty-check": "node resources/pretty.js --check", | ||
"build": "npx babel src -d dist", | ||
"test": "node --experimental-modules ./test" | ||
}, | ||
... | ... |