This repository was archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "npm-middlewares",
"version": "1.0.1",
"description": "A collection of middyJS custom middlewares for lambda functions",
"main": "dist/index.js",
"scripts": {
"test": "nyc --reporter=lcov mocha --recursive --require babel-polyfill --require babel-register --colors --reporter mocha-circleci-reporter test/* && codacy-coverage < ./coverage/lcov.info",
"build": "babel src --out-dir dist"
},
"author": "Lucas Klaassen",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vin65/npm-middlewares/issues"
},
"homepage": "https://github.com/Vin65/npm-middlewares",
"dependencies": {
"babel-polyfill": "6.26.0",
"ajv": "6.2.1",
"http-errors": "1.6.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.2",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-regenerator": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"chai": "3.5.0",
"codacy-coverage": "2.0.3",
"eslint": "4.8.0",
"eslint-config-winedirect": "1.0.0",
"middy": "0.9.6",
"mocha": "3.2.0",
"mocha-circleci-reporter": "0.0.2",
"mocha-lcov-reporter": "1.3.0",
"nyc": "11.4.1",
"sinon": "3.2.0",
"webpack": "3.8.1",
"webpack-node-externals": "1.6.0"
}
}