cycle-crypt
Version:
Variable size symmetric key encryption algorithm
99 lines (98 loc) • 2.28 kB
JSON
{
"name": "cycle-crypt",
"version": "1.3.0",
"description": "Variable size symmetric key encryption algorithm",
"module": "cycle-crypt.js",
"main": "dist/cycle-crypt.js",
"unpkg": "dist/cycle-crypt.min.js",
"reveal": true,
"publishConfig": {
"access": "public"
},
"bin": "bin/cycry.js",
"files": [
"cycle-crypt.*",
"CycleCrypt.*",
"lib/*",
"dist/*",
"bin/*.js",
"stream.js",
"*.md"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"test_php": "make test_php",
"test_js": "npx mocha --reporter spec",
"test": "make test_php && npm run test_js && make test_js_cli && make test_php_cli",
"coverage": "npx nyc --reporter=lcov --reporter=text-summary npm run test_js",
"jest": "npx jest",
"jest:watch": "npx jest --watch",
"jest:cov": "npx jest --coverage",
"verup": "verup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/cycle-crypt.git"
},
"keywords": [
"xor",
"xorshift",
"crypt",
"encryption",
"cryptography",
"JavaScript",
"JS",
"PHP",
"cycle",
"salt",
"key"
],
"author": "Dumitru Uzun <contact@duzun.me> (https://DUzun.Me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/cycle-crypt/issues"
},
"homepage": "https://github.com/duzun/cycle-crypt#readme",
"dependencies": {
"string-encode": "^0.2.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^6.2.3",
"require-json6": "^1.1.0",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"verup": "^1.7"
},
"browserslist": "> 0.25%, not dead",
"jshintConfig": {
"esversion": 9,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"scripturl": true,
"-W041": false
},
"extra": {
"verup": {
"files": [
"cycle-crypt.php",
"cycle-crypt.js",
"composer.json",
"package-lock.json"
]
}
}
}