This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
137 lines (137 loc) · 3.25 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "alagarr",
"version": "0.0.0",
"description": "Alagarr is a request-response helper library that removes the boilerplate from your Node.js serverless functions and helps make your code portable.",
"author": "Marco Lüthy <[email protected]> (https://github.com/adieuadieu)",
"maintainers": [],
"contributors": [],
"keywords": [
"serverless",
"aws",
"google",
"azure",
"functions",
"faas",
"lambda",
"api",
"gateway",
"request",
"response",
"boilerplate",
"http",
"portable",
"mitigate",
"vendor",
"lock-in"
],
"license": "MIT",
"repository": "[email protected]:adieuadieu/alagarr.git",
"bugs": {
"url": "https://github.com/adieuadieu/alagarr/issues"
},
"homepage": "https://github.com/adieuadieu/alagarr",
"engines": {
"node": ">= 6.10"
},
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"pretest": "npm run clean",
"test": "jest",
"test:integration": "scripts/integration-test.sh",
"watch:test": "jest --watch",
"lint": "yarn lint:tslint && yarn lint:tsc",
"lint:tslint": "tslint -p tsconfig.json -t stylish",
"lint:tsc": "tsc --noEmit --pretty",
"prebuild": "npm run clean",
"build": "tsc -d",
"dev": "tsc -w",
"prepublishOnly": "npm run lint && npm test && npm run security-check && npm run build",
"precommit": "lint-staged",
"prettier": "prettier --write",
"security-check": "nsp",
"upgrade-dependencies": "yarn upgrade-interactive --latest --exact",
"commitmsg": "commitlint -e $GIT_PARAMS",
"semantic-release": "semantic-release"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "7.6.1",
"@commitlint/config-conventional": "7.6.0",
"@types/aws-lambda": "8.10.14",
"@types/jest": "23.3.13",
"@types/node": "9.6.56",
"coveralls": "3.1.1",
"husky": "0.14.3",
"jest": "23.6.0",
"lint-staged": "8.2.1",
"nsp": "3.2.1",
"nyc": "12.0.2",
"prettier": "1.19.1",
"rimraf": "2.7.1",
"semantic-release": "15.14.0",
"ts-jest": "23.10.5",
"tslint": "5.14.0",
"tslint-functional-preset": "1.5.0",
"typescript": "3.7.2"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"useTabs": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn prettier",
"yarn lint:tslint",
"yarn lint:tsc",
"git add"
],
"*.{json}": [
"yarn prettier",
"git add"
]
},
"jest": {
"bail": false,
"collectCoverage": true,
"roots": [
"src/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"coverageThreshold": {
"global": {
"branches": 94,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
}
}