{
    "name": "lc4",
    "version": "3.0.21",
    "description": "A spec-compliant LC4 and LS47 encryption/decryption library",
    "main": "./lib/main.js",
    "scripts": {
        "build:node": "npx babel src -s --no-comments --out-dir lib",
        "build:browser": "npx babel src -s --no-comments --no-babelrc --config-file ./.babel-browser --out-dir dist",
        "build": "npm run build:node && npm run build:browser && npm run docs",
        "prepare": "npm run build",
        "test": "npx mocha --require @babel/register --recursive --parallel",
        "docs": "jsdoc2md src/main.js > docs/docs.md && jsdoc2md src/*.js > docs/dev.md",
        "lint": "npx prettier --check ."
    },
    "keywords": [
        "lc4",
        "encryption",
        "elsiefour"
    ],
    "author": "Ulysse McConnell",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/umcconnell/lc4.git"
    },
    "devDependencies": {
        "@babel/cli": "^7.8.4",
        "@babel/core": "^7.9.0",
        "@babel/preset-env": "^7.9.0",
        "@babel/register": "^7.9.0",
        "babel-preset-minify": "^0.5.1",
        "chai": "^4.2.0",
        "jsdoc-to-markdown": "^8.0.0",
        "mocha": "^10.0.0",
        "prettier": "^2.2.1"
    }
}
