-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "@mbanq/shawerma",
"version": "1.0.1",
"description": "Goodies for AWS λ",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"scripts": {
"prepublish": "tsc && cp types.d.ts dist",
"build": "tsc && cp types.d.ts dist",
"test": "jest --silent --colors --config=jest.config.js",
"test:ci": "jest --ci --config=jest.config.js --reporters=default --reporters=jest-junit",
"test:watch": "jest --colors --config=jest.config.js --watchAll",
"lint": "eslint '*/**/*.{js,ts}'"
},
"keywords": [
"λ",
"lambda",
"serverless",
"API gateway",
"API",
"http code",
"error",
"code",
"AWS"
],
"author": {
"name": "FinLink, Inc.",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/mbanq/shawerma",
"repository": {
"type": "git",
"url": "[email protected]:mbanq/shawerma.git"
},
"bugs": {
"url": "https://github.com/mbanq/shawerma/issues"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"standard": "^16.0.4",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"bluebird": "^3.5.1"
}
}