git.fiddlerwoaroof.com
package.json
d230a7a2
 {
cc733b08
   "author": "Ed L",
   "license": "ISC",
   "name": "js-generic-functions",
bc9563ee
   "version": "2.0.10",
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",
6e1b8095
     "@types/jest": "^29.4.0",
69f62741
     "eslint": "^8.4.1",
cc733b08
     "eslint-plugin-react": "^7.20.3",
6e1b8095
     "jest": "^29.5.0",
0622740c
     "jest-junit": "^16.0.0",
aa0d26a4
     "npm": "^10.0.0",
7f9a9023
     "prettier": "^3.0.0"
cc733b08
   },
   "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",
1eae5134
     "bracketSameLine": true,
cc733b08
     "arrowParens": "avoid"
   }
d230a7a2
 }