-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "commitizen-emoji",
"version": "1.0.5",
"description": "Fancier commits with emojis.",
"author": {
"name": "Zackary Kononov",
"email": "zorgizorgik@gmail.com"
},
"license": "MIT",
"repository": "https://github.com/zorgick/commitizen-emoji",
"main": "dist/index.js",
"engines": {
"node": ">=10"
},
"files": [
"dist/*"
],
"keywords": [
"commitizen",
"commitlint",
"adapter",
"emoji",
"gitmoji",
"prompt"
],
"dependencies": {
"cli-truncate": "^1.0.0",
"find-up": "^5.0.0",
"fuse.js": "^3.4.5",
"inquirer-autocomplete-prompt": "^0.12.0",
"inquirer-maxlength-input-prompt": "^1.0.1",
"node-fetch": "^2.6.1",
"pad": "^2.3.0",
"read-pkg-up": "^7.0.1",
"wrap-ansi": "^3.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@types/inquirer": "^7.3.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/node-fetch": "^2.5.10",
"@types/rimraf": "^3.0.0",
"@types/wrap-ansi": "^8.0.0",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"husky": "^6.0.0",
"jest": "^27.0.4",
"msw": "^0.29.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.3.3",
"typescript-transform-paths": "^3.0.2"
},
"scripts": {
"test": "jest",
"clear-dist": "rimraf ./dist",
"build": "yarn clear-dist && ttsc -p tsconfig.build.json",
"prepare": "husky install",
"prepublish": "npm run build"
}
}