git.fiddlerwoaroof.com
Raw Blame History
{
    "author": "Ed L",
    "license": "ISC",
    "name": "js-generic-functions",
    "version": "1.0.9",
    "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",
        "jest": "^25.1.0",
        "jest-junit": "^10.0.0"
    },
    "files": [
        "/dist/*.js",
        "/dist/*.css",
        "/dist/*.html",
        "/src/*.js",
        "/src/*.css",
        "/src/*.html"
    ],
    "scripts": {
        "test": "jest src",
        "build": "babel -d dist src",
        "prepublishOnly": "babel -d dist src && jest src && eslint src"
    },
    "jest-junit": {
        "outputDirectory": "./test-results/jest",
        "outputName": "./results.xml"
    }
}