-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 770 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "@amzn/node-lambda",
"version": "4.0.2",
"description": "A mock lambda implementation for CDK infrastructure unit",
"main": "index.js",
"scripts": {
"test": "jest --coverage --silent --verbose",
"test-debug": "jest --coverage",
"clean": "rm -rf node_modules",
"code-linter-js": "./node_modules/eslint/bin/eslint.js lambda --ext .js",
"code-linter-ts": "./node_modules/eslint/bin/eslint.js bin lib --ext .ts",
"code-linter": "npm run code-linter-ts && npm run code-linter-js",
"code-formatter": "./node_modules/prettier/bin-prettier.js --config .prettierrc.yml '**/*.ts' '**/*.js' --write"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0"
}