{
    "name": "hybrid-crypto-js",
    "version": "0.2.4",
    "description": "Hybrid (RSA+AES) encryption and decryption toolkit for JavaScript",
    "main": "lib/index.js",
    "scripts": {
        "prepublish": "npm run build",
        "webpack": "browserify lib/webpack.js -o web/hybrid-crypto.js",
        "uglify": "uglifyjs web/hybrid-crypto.js -o web/hybrid-crypto.min.js",
        "flow": "flow",
        "babel": "babel src/ -d lib/",
        "build": "npm run babel && npm run webpack && npm run uglify",
        "test": "npm run babel && mocha -R spec"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/juhoen/hybrid-crypto-js.git"
    },
    "keywords": [
        "rsa",
        "aes",
        "rsa+aes",
        "react",
        "node",
        "react-native"
    ],
    "author": "Juho Enala <juho.enala@gmail.com>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/juhoen/hybrid-crypto-js/issues"
    },
    "homepage": "https://github.com/juhoen/hybrid-crypto-js",
    "dependencies": {
        "node-forge": "^0.8.5"
    },
    "devDependencies": {
        "@babel/cli": "^7.5.5",
        "@babel/core": "^7.5.5",
        "@babel/preset-env": "^7.5.5",
        "@babel/preset-flow": "^7.0.0",
        "babel-core": "^6.26.0",
        "babel-preset-env": "1.6.0",
        "babel-preset-es2015": "^6.24.1",
        "babelify": "^8.0.0",
        "browserify": "^16.5.0",
        "chai": "^4.1.2",
        "flow-bin": "^0.107.0",
        "mocha": "^4.0.1",
        "prettier": "^1.18.2",
        "uglify-js": "^3.2.1"
    },
    "browserslist": "> 0.25%, not dead"
}
