-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
52
53
{
"name": "aws-lambda-rie-http",
"version": "1.1.0",
"description": "Simulate HTTP requests to your Lambda function handlers",
"bin": {
"aws-lambda-rie-http": "./bin/http.js"
},
"scripts": {
"dev": "nodemon ./bin/http.js",
"dev-ts": "nodemon --exec 'ts-node --esm' ./bin/http.js",
"start": "node ./bin/http.js",
"test": "run-s test:unit test:e2e",
"test:unit": "mocha --file ./test/bootstrap.js test/unit",
"test:e2e": "mocha --file ./test/bootstrap.js test/e2e"
},
"repository": "https://github.com/someimportantcompany/aws-lambda-rie-http",
"bugs": "https://github.com/someimportantcompany/aws-lambda-rie-http/issues",
"homepage": "https://github.com/someimportantcompany/aws-lambda-rie-http#readme",
"author": "jdrydn <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"files": [
"bin/",
"lib/"
],
"dependencies": {
"debug": "^4.3.4",
"rimraf": "^5.0.5",
"ts-import": "^4.0.0-beta.10"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.114",
"axios": "^1.3.4",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1"
},
"engines": {
"node": ">=16.0",
"npm": ">=8.0"
},
"mocha": {
"exit": true,
"extension": "mjs",
"recursive": true,
"reporter": "spec"
},
"nodemonConfig": {
"env": {
"DEBUG": "aws-lambda-rie-http"
}
}
}