-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.44 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@kdcio/api-gw-resp",
"version": "1.7.6",
"description": "API Gateway response builder",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "npm run clean && npm run bundle",
"bundle": "rollup -c",
"clean": "rimraf dist",
"test": "jest --no-cache",
"watch": "jest --watchAll",
"coverage": "npm test -- --coverage",
"lint:fix": "eslint src --ext .ts --fix",
"lint": "eslint src --ext .ts",
"tsc": "tsc src/index.ts --noEmit",
"changeset": "changeset",
"release": "npm run build && changeset publish"
},
"author": "Ian Dela Cruz <ian@kdcsoftware.com> (https://www.kdcsoftware.com)",
"repository": {
"type": "git",
"url": "https://github.com/kdcio/api-gw-resp"
},
"homepage": "https://github.com/kdcio/api-gw-resp",
"license": "MIT",
"keywords": [
"kdc",
"aws",
"api",
"gateway",
"lambda",
"response"
],
"dependencies": {
"@babel/runtime": "^7.14.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@changesets/cli": "^2.14.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"pretty-quick": "^2.0.2",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"rollup": "^2.32.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.1.1",
"ts-jest": "^26.4.1",
"typescript": "^3.9.7"
},
"targets": {
"main": {
"engines": {
"node": ">=10.x"
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"pretty-quick --staged"
]
}
}