git.fiddlerwoaroof.com
Raw Blame History
{
    "author": "Ed L",
    "license": "ISC",
    "name": "js-generic-functions",
    "version": "1.0.5",
    "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/plugin-transform-react-jsx": "^7.0.0",
        "@babel/preset-env": "^7.5.0",
        "@babel/preset-react": "^7.0.0",
        "babel-core": "^7.0.0-bridge.0",
        "enzyme": "^3.6.0",
        "eslint": "^6.0.1",
        "eslint-plugin-react": "^7.11.1",
        "jest": "^24.8.0",
        "jest-junit": "^7.0.0",
        "npm": "^6.4.1",
        "ramda": "*",
        "react": "^16.5.0",
        "react-dom": "^16.5.0",
        "rollup": "^1.16.6",
        "rollup-plugin-babel": "^4.3.2",
        "rollup-plugin-commonjs": "^10.0.0",
        "rollup-plugin-livereload": "^1.0.0",
        "rollup-plugin-node-resolve": "^5.0.0",
        "rollup-plugin-replace": "^2.0.0",
        "rollup-plugin-serve": "^1.0.1"
    },
    "files": [
        "/dist/*.js",
        "/dist/*.css",
        "/dist/*.html",
        "/src/*.js",
        "/src/*.css",
        "/src/*.html"
    ],
    "scripts": {
        "test": "jest",
        "postinstall": "babel -d dist src",
        "prepublish": "babel -d dist src && jest && eslint src"
    },
    "jest-junit": {
        "outputDirectory": "./test-results/jest",
        "outputName": "./results.xml"
    }
}