aws-kms-ee
Version:
AWS KMS Envelope Encryption
83 lines (82 loc) • 2.18 kB
JSON
{
"name": "aws-kms-ee",
"version": "1.0.7",
"description": "AWS KMS Envelope Encryption",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rm -rf .nyc_output/ lib/ coverage/",
"lint": "npm run lint:js",
"lint:js": "eslint --fix --format=node_modules/eslint-formatter-pretty .",
"lint:staged": "lint-staged",
"pretest": "npm run clean && npm run lint",
"test": "better-npm-run test",
"prepublishOnly": "npm run build"
},
"betterScripts": {
"test": {
"command": "nyc mocha --require babel-register --recursive ./test/helper.js ./test/unit/**/*.test.js",
"env": {
"NODE_ENV": "test"
}
}
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git+https://github.com/DanteInc/aws-kms-ee.git"
},
"keywords": [
"aws",
"kms",
"envelope",
"encryption"
],
"author": "John Gilbert <john.gilbert@danteinc.com> (danteinc.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanteInc/aws-kms-ee/issues"
},
"homepage": "https://github.com/DanteInc/aws-kms-ee#readme",
"devDependencies": {
"@aws-sdk/client-kms": "^3.438.0",
"@smithy/node-http-handler": "^2.1.8",
"aws-sdk-client-mock": "^3.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"better-npm-run": "0.1.0",
"bluebird": "^3.7.2",
"chai": "^4.1.2",
"debug": "^4.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.9.0",
"lint-staged": "^7.0.0",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"sinon": "^5.0.0",
"sinon-chai": "^3.2.0"
},
"dependencies": {
"crypto-js": "^4.2.0"
},
"peerDependencies": {
"bluebird": "^3.7.2",
"debug": "^4.1.1",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0"
}
}