-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "@codemonger-io/mapping-template-compose",
"version": "0.2.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",
"README.ja.md"
],
"scripts": {
"build": "rimraf dist && rollup -c && api-extractor run --local",
"build:doc": "run-s build && api-documenter markdown --input-folder temp --output-folder api-docs/markdown",
"type-check": "tsc --noEmit",
"prepare": "run-s build",
"test": "jest"
},
"keywords": [
"AWS",
"APIGateway",
"MappingTemplate"
],
"author": "Kikuo Emoto <kemoto@codemonger.io>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"@microsoft/api-documenter": "7.28.2",
"@microsoft/api-extractor": "7.55.2",
"@rollup/plugin-typescript": "12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "24.10.7",
"jest": "^30.2.0",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.1.2",
"rollup": "^4.55.1",
"ts-jest": "^29.4.6",
"tslib": "^2.6.2",
"typescript": "5.8.2"
}
}