-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.67 KB
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
{
"name": "app-example",
"version": "0.3.0",
"description": "example usage of @serverless-guy/lambda",
"main": "index.js",
"scripts": {
"test": "npm run coverage",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:mocha",
"test:mocha": "mocha-webpack test/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=./test-reports/junit.xml",
"test:mocha-no-junit": "mocha-webpack test/**/*.test.js",
"run:dev": "sls offline --stage dev",
"dev": "npm run run:dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"sourceMap": false
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-syntax-decorators": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"aws-sdk": "^2.384.0",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"istanbul-instrumenter-loader": "^3.0.1",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-webpack": "^2.0.0-beta.0",
"nock": "^10.0.6",
"nyc": "^13.1.0",
"serverless": "^1.36.1",
"serverless-offline": "^3.33.0",
"serverless-prune-plugin": "^1.3.2",
"serverless-webpack": "^5.2.0",
"source-map-support": "^0.5.9",
"webpack": "^4.28.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"@hapi/joi": "^16.1.7",
"@serverless-guy/lambda": "^2.0.0",
"axios": "^0.19.0"
}
}