-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
51
52
53
54
55
56
57
58
{
"name": "vingle-corgi",
"version": "3.2.0",
"description": "Restful HTTP Framework for AWS Lambda - AWS API Gateway Proxy Integration",
"main": "./dst/index.js",
"typings": "./dst/index.d.ts",
"engines": {
"node": "^10.16.0",
"npm": "^6.10.0"
},
"scripts": {
"clean": "rm -Rf dst",
"prebuild": "npm run clean",
"build": "check-engine && tsc -d",
"lint": "tslint -p ./tsconfig.test.json",
"prepublish": "npm run build",
"pretest": "npm run build -- -p ./tsconfig.test.json",
"ci:publish": "publish",
"test": "mocha dst/**/__test__/**/*_spec.js"
},
"files": [
"dst"
],
"repository": {
"type": "git",
"url": "git+https://github.com/balmbees/corgi.git"
},
"author": "Kurt Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/balmbees/corgi/issues"
},
"homepage": "https://github.com/balmbees/corgi#readme",
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "2.2.48",
"chai": "4.2.0",
"check-engine": "1.8.1",
"mocha": "3.5.3",
"np": "3.1.0",
"tslint": "5.18.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@types/joi": "^13.0.2",
"@types/lodash": "^4.14.109",
"@types/node": "^7.0.27",
"@types/qs": "^6.5.0",
"vingle-corgi-joi-to-json-schema": "^3.2.0",
"aws-xray-sdk-core": ">=1.1.6",
"joi": "^13.0.2",
"joi-to-json-schema": "^5.1.0",
"lodash": "^4.17.10",
"openapi3-ts": "^1.3.0",
"path-to-regexp": "^1.7.0",
"qs": "^6.5.0"
}
}