-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.19 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
{
"name": "@kevboutin/azure-middy-monorepo",
"version": "0.2.5",
"description": "A Node.js middleware engine for Azure functions",
"private": true,
"type": "commonjs",
"engines": {
"node": ">=18"
},
"scripts": {
"audit": "npm audit fix --workspaces",
"commit-msg": "commitlint --config commitlint.config.js --edit $1",
"format": "npx prettier -w **/*.js",
"lerna:publish": "lerna publish --exact --yes --no-git-tag-version --no-push --bump $npm_package_version",
"lerna:sync": "npm install && lerna publish --exact --yes --skip-npm --no-git-tag-version --no-push --bump $npm_package_version",
"lint": "npx prettier -c **/*.*js",
"outdated": "npm outdated --workspaces",
"pre-commit": "npm run lint && npm run test:lint",
"prepare": "git config --local core.hooksPath .githooks",
"prettier:check": "npx prettier --list-different \"./**/*.{json,yaml,js,ts}\"",
"prettier:fix": "npx prettier -w **/*.*js",
"release:tag": "git tag $npm_package_version && git push --tags",
"test": "npm run test:lint && npm run test:packages:unit",
"test:lint": "npx lint-staged",
"test:packages:unit": "c8 npm run test:unit --workspaces",
"update": "npm update --workspaces && npm install --workspaces"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevboutin/azure-middy.git"
},
"keywords": [
"azure",
"middleware",
"serverless",
"framework",
"function",
"app",
"faas",
"function"
],
"author": {
"name": "Azure-middy contributors",
"url": "https://github.com/kevboutin/azure-middy/graphs/contributors"
},
"bugs": {
"url": "https://github.com/kevboutin/azure-middy/issues"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"ava": "^6.2.0",
"c8": "^10.1.3",
"lerna": "^8.1.9",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"sinon": "^19.0.2"
}
}