UNPKG

cipherjs

Version:

Javascript implementation of simple ciphers

61 lines (52 loc) 1.13 kB
{ "name": "cipherjs", "version": "0.1.1", "description": "Javascript implementation of simple ciphers", "license": "MIT", "repository": "sheharyarn/cipherjs", "author": { "name": "Sheharyar Naseer", "email": "hello@sheharyar.me", "url": "https://sheharyar.me/" }, "main": "./src/index.js", "bin": "./bin/cli.js", "scripts": { "build": "webpack", "test": "mocha --reporter spec", "cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*", "prepublish": "npm run build" }, "files": [ "index.js", "src", "bin", "dist" ], "keywords": [ "cli", "crypto", "cryptography", "cipher", "caesar", "substitution", "vigenere", "affine", "encrypt", "decrypt" ], "devDependencies": { "babel-core": "^6.24.0", "babel-loader": "^6.4.1", "babel-preset-env": "^1.3.2", "chai": "^3.5.0", "coveralls": "^2.13.0", "istanbul": "^0.4.5", "mocha": "^3.2.0", "webpack": "^2.3.2" }, "dependencies": { "chalk": "^1.1.3", "inquirer": "^3.0.5" } }