forked from serverless/event-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 951 Bytes
/
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
{
"name": "@serverless/event-mocks",
"version": "1.1.2",
"description": "Event Mocks is a simple library designed to generate simple AWS events for testing and automation purposes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./",
"lint": "tslint -p tsconfig.json",
"lintfix": "tslint -p tsconfig.json --fix",
"test": "ts-mocha lib/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "."
},
"author": "Serverless, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@types/lodash": "^4.14.123",
"@types/aws-lambda": "^8.10.77",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"aws-lambda": "^1.0.6",
"chai": "^4.2.0",
"mocha": "^8.3.2",
"ts-mocha": "^6.0.0",
"ts-node": "^8.1.0",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
},
"dependencies": {
"lodash": "^4.17.21"
}
}