git.fiddlerwoaroof.com
package.json
d230a7a2
 {
4d4a2215
     "author": "Ed L",
     "license": "ISC",
     "name": "js-generic-functions",
0607126b
     "version": "1.0.9",
4d4a2215
     "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",
     "dependencies": {},
     "devDependencies": {
         "@babel/cli": "^7.5.0",
         "@babel/core": "^7.5.0",
         "@babel/plugin-proposal-object-rest-spread": "^7.5.0",
         "@babel/preset-env": "^7.5.0",
         "babel-core": "^7.0.0-bridge.0",
         "eslint": "^6.0.1",
         "eslint-plugin-react": "^7.11.1",
e24be238
         "jest": "^25.1.0",
e840c648
         "jest-junit": "^10.0.0"
4d4a2215
     },
     "files": [
         "/dist/*.js",
         "/dist/*.css",
         "/dist/*.html",
         "/src/*.js",
         "/src/*.css",
         "/src/*.html"
     ],
     "scripts": {
566322c8
         "test": "jest src",
0607126b
         "build": "babel -d dist src",
         "prepublishOnly": "babel -d dist src && jest src && eslint src"
4d4a2215
     },
     "jest-junit": {
         "outputDirectory": "./test-results/jest",
         "outputName": "./results.xml"
     }
d230a7a2
 }