generated from CodeForBaltimore/ProjectTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "lambda-restful-util",
"version": "1.0.2",
"description": "A lightweight utility for Lambda API development",
"repository": "git@github.com:CodeForBaltimore/lambda-restful-util.git",
"author": "Jason Anton <rev.jt.anton@gmail.com>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/"
],
"source": "src/index.ts",
"scripts": {
"build": "tsc -p .",
"lint": "eslint . --ext .ts",
"report": "nyc --reporter=text-lcov npm test > coverage.lcov",
"test": "NODE_ENV=test nyc mocha -r ts-node/register \"src/**/*.spec.ts\" --exit"
},
"devDependencies": {
"@types/aws-lambda": "8.10.72",
"@types/chai": "4.2.15",
"@types/mocha": "8.2.0",
"@types/node": "14.14.27",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"all-contributors-cli": "6.19.0",
"chai": "4.3.0",
"eslint": "7.20.0",
"eslint-plugin-mocha": "8.0.0",
"mocha": "8.3.0",
"nyc": "15.1.0",
"ts-node": "9.1.1",
"typescript": "4.1.5"
},
"dependencies": {
"aws-lambda": "1.0.6"
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
]
}
}