-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "serverless-api-manager",
"version": "1.0.0",
"description": "Optimized web framework for serverless environment",
"main": "dist/index.js",
"scripts": {
"precompile": "rm -rf dist/",
"compile": "tsc -p .",
"postcompile": "tsc-alias",
"dev": "node -r ts-node/register -r tsconfig-paths/register debug/index.ts",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "echo 'npm run test:unit'",
"test:e2e": "echo 'npm run test:e2e'",
"prepublish": "node scripts/prepublish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zigante/serverless-api-manager.git"
},
"keywords": [
"serverless",
"web",
"api",
"express",
"aws",
"api-gateway",
"lambda",
"framework",
"router",
"app"
],
"author": "Pedro Zigante <zigante.pedro@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zigante/serverless-api-manager/issues"
},
"homepage": "https://github.com/zigante/serverless-api-manager#readme",
"files": [
"dist/",
"LICENSE.md",
"package.json",
"README.md"
],
"devDependencies": {
"@types/aws-lambda": "8.10.84",
"@types/node": "14.17.27",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"eslint": "8.0.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"ts-node": "10.3.0",
"tsc-alias": "1.3.10",
"tsconfig-paths": "3.11.0",
"typescript": "4.4.4"
}
}