-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.83 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
{
"name": "bigsby",
"version": "1.9.4",
"description": "Bigsby is the newest NodeJS Lambda library on the block. Parsing, validation, auth, DI, versioning, hooks and more.",
"main": ".build/index.js",
"types": ".build/index.d.ts",
"author": "burketyler",
"license": "MIT",
"files": [
".build"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"bigsby",
"aws lambda",
"lambda functions",
"decorators",
"typescript",
"plugins",
"versioning",
"parsing",
"validation",
"dependency injection",
"authentication",
"middleware"
],
"scripts": {
"prettier:check": "prettier --check src/**/*.ts --loglevel error",
"prettier:fix": "prettier --write src/**/*.ts",
"lint:check": "eslint -c .eslintrc src/**/*.ts",
"lint:fix": "eslint --fix -c .eslintrc src/**/*.ts",
"code:check": "yarn prettier:check && yarn lint:check",
"code:fix": "yarn prettier:fix && yarn lint:fix",
"clean": "rm -rf .build",
"build": "yarn clean && tsc",
"test": "jest",
"precommit": "yarn code:fix",
"docs": "(cd docs && yarn start)",
"cm": "git-cz",
"prepare": "husky install"
},
"dependencies": {
"clone-deep": "4.0.1",
"lodash.mergewith": "4.6.2",
"ts-injection": "3.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "16.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/aws-lambda": "8.10.89",
"@types/clone-deep": "4.0.1",
"@types/jest": "27.4.0",
"@types/lodash.mergewith": "4.6.6",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"aws-sdk": "2.1055.0",
"commitizen": "4.2.4",
"commitlint": "16.0.1",
"cz-customizable": "6.3.0",
"eslint": "8.6.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.4.5",
"joi": "17.6.0",
"prettier": "2.5.1",
"semantic-release": "18.0.1",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}