-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.86 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
{
"name": "@meza/create-meza-cli",
"version": "1.0.0",
"exports": {
".": {
"import": {
"types": "dist/types/index.d.ts",
"default": "dist/index.js"
}
}
},
"bin": {
"create-meza-cli": "dist/index.js"
},
"license": "GPL-3.0",
"type": "module",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"commit": "cz",
"ci": "npm-run-all --parallel lint test",
"clean": "rimraf dist .cache/tsbuildinfo",
"clean:all": "yarn clean && rimraf node_modules .cache",
"lint:specific": "eslint --ext .ts --ext .json --cache --cache-location .cache/",
"lint:eslint": "yarn lint:specific .",
"lint:tsc": "tsc --noEmit",
"lint:fix": "yarn lint:eslint --fix && yarn lint:tsc",
"lint": "npm-run-all --parallel lint:*",
"test": "npm-run-all --parallel test:*",
"test:unit": "vitest",
"test:e2e": "vitest --config vitest.config.e2e.ts",
"report": "exit 0",
"semantic-release": "semantic-release",
"release": "semantic-release"
},
"dependencies": {
"@types/inquirer": "^9.0.1",
"@types/node": "^18.0.0",
"chalk": "^5.0.1",
"commander": "^9.3.0",
"core-js": "^3.19.1",
"inquirer": "^9.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/prompt-cli": "^17.0.0",
"@faker-js/faker": "^7.3.0",
"@meza/adr-tools": "^1.0.10",
"@meza/tsconfig-base": "^1.1.0",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.3.0",
"c8": "^7.11.3",
"copyfiles": "^2.4.1",
"eslint": "^8.1.0",
"eslint-config-tailored-tunes": "^5.0.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-security": "^1.5.0",
"install-deps-postmerge": "^2.0.1",
"is-ci": "^3.0.1",
"mock-cwd": "^1.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"semantic-release-export-data": "^1.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.4.4",
"uuid": "^8.3.2",
"vitest": "^0.15.2",
"yarn": "^1.22.17"
},
"repository": {
"type": "git",
"url": "https://github.com/meza/create-meza-cli.git"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
}
}