-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 2.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "serverless-plugin-aws-resolvers",
"version": "2.1.0",
"description": "Plugin that resolves deployed AWS services into variables",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"engines": {
"node": ">=12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacob-meacham/serverless-plugin-aws-resolvers.git"
},
"keywords": [
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless"
],
"author": "Matt Sills",
"contributors": [
{
"name": "Jacob Meacham",
"url": "http://jemonjam.com/"
}
],
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/jacob-meacham/serverless-plugin-aws-resolvers/issues"
},
"homepage": "https://github.com/jacob-meacham/serverless-plugin-aws-resolvers",
"scripts": {
"clean": "rimraf lib && mkdir lib",
"test": "cross-env NODE_ENV=test nyc mocha test/",
"test:watch": "mocha --watch test/",
"check": "eslint . && npm run test",
"build:node": "cross-env BABEL_ENV=production babel src --out-dir lib",
"build": "npm run clean && npm run check && npm run build:node",
"docs": "esdoc .",
"docs:deploy": "npm run docs && gh-pages -d doc",
"ci:coverage": "nyc report --reporter=lcov"
},
"dependencies": {
"aws-sdk": "2.814.0",
"lodash": "^4.17.15",
"winston": "3.4.0"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.8",
"@babel/register": "7.16.9",
"aws-sdk-mock": "5.5.1",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-mocha": "10.0.3",
"eslint-plugin-promise": "6.0.0",
"gh-pages": "3.2.3",
"mocha": "9.1.4",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"serverless": "2.71.0"
},
"peerDependencies": {
"serverless": ">=1.26.0"
},
"mocha": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 12
}
}
]
]
}
}