UNPKG

mxs

Version:

⚔️ Lightweight functional JavaScript utilities

83 lines (82 loc) 2.38 kB
{ "name": "mxs", "version": "0.10.1", "description": "⚔️ Lightweight functional JavaScript utilities", "main": "dist/mxs.js", "module": "dist/mxs.js", "types": "dist/index.d.ts", "scripts": { "lint": "eslint src --max-warnings=0", "lint:fix": "npm run lint --fix", "format": "prettier --write 'src/**/*.{js,md,json}'", "build": "tsc && webpack --config config/webpack.prod.js", "build:dev": "tsc && webpack --watch --progress --config config/webpack.dev.js", "test": "jest", "test:watch": "npm test --watch --maxWorkers=50%", "test:ci": "npm test --coverage", "postpublish": "npm run build", "docs:serve": "docsify serve ./docs -P 3000", "generate-fn-md": "jsdoc2md", "validate": "npm run lint && npm test" }, "lint-staged": { "src/**/*.{js,json,md}": [ "prettier --write ." ], "src/**/*": [ "npm lint --fix", "npm test --findRelatedTests --bail" ] }, "repository": "git@github.com:helderburato/maximus.git", "author": "Helder Burato Berto <helder.burato@gmail.com> (https://helderburato.com)", "keywords": [ "maximus", "mx", "functional", "utils", "utilities", "lightweight", "fp" ], "files": [ "dist/", "LICENSE", "README.md" ], "devDependencies": { "@babel/core": "^7.16.12", "@babel/eslint-parser": "^7.16.5", "@babel/preset-env": "^7.16.11", "@commitlint/cli": "^18.4.4", "@commitlint/config-conventional": "^16.0.0", "@swc/core": "^1.2.133", "@types/jest": "^29.5.11", "@types/node": "^20.11.0", "babel-jest": "^27.4.6", "clean-webpack-plugin": "^4.0.0-alpha.0", "docsify-cli": "^4.4.2", "eslint": "^8.7.0", "eslint-config-prettier": "^8.1.0", "eslint-config-standard": "^16.0.2", "eslint-plugin-import": "^2.25.4", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-standard": "^5.0.0", "faker": "^5.4.0", "husky": "^7.0.4", "jest": "^29.7.0", "jsdoc-to-markdown": "^7.1.0", "lint-staged": "12.3.2", "prettier": "^2.5.1", "swc-loader": "^0.1.15", "ts-jest": "^29.1.1", "ts-loader": "^9.5.1", "typescript": "^5.3.3", "webpack": "^5.67.0", "webpack-cli": "^4.9.2", "webpack-merge": "^5.7.3" }, "license": "MIT" }