-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"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 <[email protected]> (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"
}
}