-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 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
57
58
59
60
61
{
"name": "@serverless-guy/lambda",
"version": "3.0.0",
"description": "A small lambda wrapper that lets you write cleaner and maintainable lambda function",
"main": "dist/index.js",
"scripts": {
"mocha": "./node_modules/.bin/mocha test/**/*.test.ts",
"test": "npm run lint && nyc npm run mocha",
"rollup": "rollup -c",
"clean": "rimraf ./dist",
"lint": "./node_modules/.bin/eslint . --ext .ts",
"build": "npm run test && npm run clean && npm run rollup"
},
"types": "dist/wrapper.d.ts",
"keywords": [
"lambda",
"serverless",
"aws",
"response",
"CORS",
"aws-lambda",
"lambda-wrapper",
"wrapper"
],
"author": "yakovmeister <so@tfwno.gf>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@types/aws-lambda": "^8.10.64",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-guy/lambda.git"
},
"bugs": {
"url": "https://github.com/serverless-guy/lambda/issues"
},
"homepage": "https://serverless-guy.github.io/lambda"
}