-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "mapping-template-compose",
"version": "0.1.1",
"description": "Compose API Gateway mapping templates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts"
],
"scripts": {
"build": "rollup -c && api-extractor run --local",
"build:doc": "npm run build && api-documenter markdown --input-folder temp --output-folder api-docs/markdown",
"type-check": "tsc --noEmit",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"AWS",
"APIGateway",
"MappingTemplate"
],
"author": "Kikuo Emoto <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@microsoft/api-documenter": "7.23.23",
"@microsoft/api-extractor": "7.40.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"rollup": "^4.10.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "5.3.3"
}
}