{ "author": "Ed L", "license": "ISC", "name": "js-generic-functions", "version": "2.0.3", "description": "A CLOS-inspired implementation of generic functions", "repository": "https://github.com/fiddlerwoaroof/js-generic-functions", "homepage": "https://fiddlerwoaroof.github.io/js-generic-functions/", "main": "dist/genfuns.js", "devDependencies": { "@babel/cli": "^7.10.4", "@babel/core": "^7.10.4", "@babel/plugin-proposal-object-rest-spread": "^7.10.4", "@babel/preset-env": "^7.10.4", "@types/jest": "^27.0.3", "babel-core": "^7.0.0-bridge.0", "eslint": "^8.4.1", "eslint-plugin-react": "^7.20.3", "jest": "^27.0.4", "jest-junit": "^13.0.0", "prettier": "^2.0.5" }, "files": [ "README.md", "/dist/*.js", "/dist/*.css", "/dist/*.html", "/src/*.js", "/src/*.css", "/src/*.html" ], "scripts": { "test": "jest src", "test:watch": "jest --watch src", "format": "prettier --write .", "build": "babel -d dist src", "prepublishOnly": "babel -d dist src && jest src && eslint src" }, "jest-junit": { "outputDirectory": "./test-results/jest", "outputName": "./results.xml" }, "prettier": { "trailingComma": "es5", "jsxBracketSameLine": true, "arrowParens": "avoid" } }