-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
35 lines (35 loc) · 925 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
{
"name": "@serverless/event-mocks",
"version": "1.1.1",
"description": "Event Mocks is a simple library designed to generate simple AWS events for testing and automation purposes.",
"main": "dist/index.js",
"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/aws-lambda": "^8.10.115",
"@types/chai": "^4.3.5",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.54",
"aws-lambda": "^0.1.2",
"chai": "^4.3.7",
"mocha": "^6.2.3",
"ts-mocha": "^6.0.0",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typescript": "^3.9.10"
},
"dependencies": {
"@types/lodash": "^4.14.194",
"lodash": "^4.17.21"
}
}