-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.38 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": "lambda-env-vars",
"version": "0.4.0",
"description": "Simple package for decrypting and storing lambda environment variables",
"main": "index.js",
"scripts": {
"test": "npm run-script lint && nyc ava test && nyc report --reporter=text-lcov | coveralls",
"test-local": "npm run-script lint && nyc ava test --verbose && nyc report --reporter=lcov",
"lint": "eslint src/*.js test/*.js",
"build": "babel src -d build && cp package.json build/package.json && cp README.md build/README.md",
"deploy": "npm run-script build && cd build && npm publish"
},
"keywords": [
"aws",
"lambda",
"environment",
"variables",
"kms"
],
"repository": {
"url": "https://github.com/aceew/aws-lambda-env-vars",
"type": "git"
},
"author": "Aaron Williams <[email protected]>",
"license": "ISC",
"dependencies": {
"babel-runtime": "^6.6.1"
},
"devDependencies": {
"ava": "^0.17.0",
"aws-sdk": "^2.7.22",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"coveralls": "^2.11.15",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"nyc": "^10.0.0"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
}
}