-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "serverless-crypt",
"version": "0.0.4",
"description": "Securing the secrets on Serverless Framework by AWS KMS encryption.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcy-terui/serverless-crypt.git"
},
"files": [
"index.js",
"package.json",
"README.md",
"LICENSE.txt",
"CHANGELOG.md",
"lib",
"dists"
],
"author": "Masashi Terui",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcy-terui/serverless-crypt/issues"
},
"homepage": "https://github.com/marcy-terui/serverless-crypt#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"serverless": "^1.0.3",
"sinon": "^1.17.6",
"tap": "^8.0.0"
},
"dependencies": {
"aws-sdk": "^2.6.13",
"bluebird": "^3.4.6",
"fs-extra": "^1.0.0"
}
}