forked from jacob-meacham/serverless-plugin-aws-resolvers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.42 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
{
"name": "serverless-plugin-aws-resolvers",
"version": "1.3.2",
"description": "Plugin that resolves deployed AWS services into variables",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"engines": {
"node": ">=7.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 --compilers js:babel-register test/",
"test:watch": "mocha --compilers js:babel-register --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=text-lcov | coveralls"
},
"dependencies": {
"aws-sdk": "2.41.0",
"babel-runtime": "6.23.0",
"lodash": "4.17.11",
"winston": "2.3.1"
},
"devDependencies": {
"aws-sdk-mock": "1.6.1",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-register": "6.24.1",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"coveralls": "2.13.1",
"cross-env": "5.0.1",
"esdoc": "0.5.2",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"mocha": "3.2.0",
"mocha-sinon": "2.0.0",
"nyc": "11.0.3",
"rimraf": "2.6.1",
"serverless": "^1.17.0"
},
"peerDependencies": {
"serverless": ">=1.16.0"
}
}