-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
21 lines (21 loc) · 885 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "node-lambda-typescript-template",
"version": "0.0.0",
"description": "The bare minimum for a typescript app running on Amazon Lambda. Uses node-lambda under the hood to locally run and also deploy your node.js Amazon Lambda application.",
"main": "index.js",
"author": "fogfish",
"license": "ISC",
"scripts": {
"clean": "rm *.js src/*.js",
"test": "mocha -r /usr/local/lib/node_modules/ts-node/register -C test/**.spec.ts",
"local": "mocha -r /usr/local/lib/node_modules/ts-node/register -C test/**.spec.ts && tsc *.ts src/*.ts && node-lambda run",
"deploy": "mocha -r /usr/local/lib/node_modules/ts-node/register -C test/**.spec.ts && tsc *.ts src/*.ts && node-lambda deploy"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}