-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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": "sls-lambda-router",
"version": "1.1.4",
"description": "Another router for aws-lambda",
"readmeFilename": "README.md",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "http://github.com/nlang/sls-lambda-router.git"
},
"keywords": [
"router",
"aws-lambda",
"serverless",
"typescript"
],
"author": "Nicolai Lang ([email protected])",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts"
},
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.7",
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.85",
"@types/mocha": "^2.2.44",
"@types/node": "^7.0.47",
"@types/route-recognizer": "^0.3.0",
"aws-sdk": "^2.263.1",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-mocha": "^6.0.0",
"gulp-shell": "^0.6.5",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"gulp-uglify-es": "^1.0.4",
"merge2": "^1.2.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.9.2"
},
"dependencies": {
"lodash": "^4.17.10",
"route-recognizer": "^0.3.4"
}
}