git.fiddlerwoaroof.com
package.json
d230a7a2
 {
cc733b08
   "author": "Ed L",
   "license": "ISC",
   "name": "js-generic-functions",
73156d42
   "version": "2.0.3",
cc733b08
   "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",
a548af05
     "@types/jest": "^27.0.3",
cc733b08
     "babel-core": "^7.0.0-bridge.0",
69f62741
     "eslint": "^8.4.1",
cc733b08
     "eslint-plugin-react": "^7.20.3",
6e2aa7b5
     "jest": "^27.0.4",
3c9a2b3a
     "jest-junit": "^13.0.0",
cc733b08
     "prettier": "^2.0.5"
   },
   "files": [
a74c96e2
     "README.md",
cc733b08
     "/dist/*.js",
     "/dist/*.css",
     "/dist/*.html",
     "/src/*.js",
     "/src/*.css",
     "/src/*.html"
   ],
   "scripts": {
     "test": "jest src",
a548af05
     "test:watch": "jest --watch src",
cc733b08
     "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"
   }
d230a7a2
 }