-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.78 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
{
"name": "create-microlambda",
"version": "1.0.0-rc.2",
"description": "Create a new microlambda project",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"lint": "npx eslint .",
"test": "npx jest",
"prettier": "npx prettier -w .",
"prepare": "husky install"
},
"bin": {
"create-microlambda": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microlambda/create-microlambda.git"
},
"keywords": [
"npm-init",
"node",
"serverless",
"microservices",
"microlambda",
"aws",
"lambda",
"typescript"
],
"author": "mario.arnautou@neoxia.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/microlambda/create-microlambda/issues"
},
"homepage": "https://microlambda.dev",
"dependencies": {
"chalk": "^4.1.2",
"execa": "^5.1.1",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"replace-in-file": "^7.0.1",
"tiged": "^2.12.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": [
"npx eslint"
],
"*.{json,md,ts,js}": [
"npx prettier -w"
]
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
}