-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
50
{
"name": "@doneee/validate-request-parameters",
"version": "1.1.0",
"description": "Validates input parameters in AWS Lambda or Express route events",
"main": "lib/index.js",
"scripts": {
"test": "ts-mocha -p tsconfig.json test/**/*.spec.ts",
"build": "npm run test && rm -rdf ./lib && tsc",
"prepublish": "npm run build"
},
"keywords": [
"lambda",
"express",
"validation",
"parameters",
"querystring",
"api-gateway",
"type-coercion",
"query-validation",
"query-string-parameters"
],
"author": "Donny Swany",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.92",
"@types/chai": "^4.3.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"aws-lambda": "^1.0.7",
"chai": "^4.3.6",
"mocha": "^9.2.0",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@doneee/composable-transform-functions": "^1.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doneee/validate-request-parameters.git"
},
"bugs": {
"url": "https://github.com/doneee/validate-request-parameters/issues"
},
"homepage": "https://github.com/doneee/validate-request-parameters#readme"
}