forked from folke/devmoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.87 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
{
"name": "devmoji",
"version": "2.2.1",
"description": "Enhance your conventional commits with gitmoji",
"keywords": [
"cli",
"command-line",
"commit",
"commitlint",
"commitzen",
"conventional-commits",
"emoji",
"emojify",
"gitmoji",
"pre-commit",
"precommit",
"terminal"
],
"author": "Folke Lemaitre <folke.lemaitre@gmail.com>",
"homepage": "https://github.com/folke/devmoji#readme",
"license": "MIT",
"main": "lib/cli.js",
"files": [
"lib"
],
"bin": {
"devmoji": "bin/devmoji.js"
},
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
},
"repository": {
"type": "git",
"url": "https://github.com/folke/devmoji.git"
},
"scripts": {
"generate:emoji": "npx ts-node --transpile-only src/scripts/updater.ts",
"generate:config": "npx ts-interface-builder src/config-options.ts",
"generate": "yarn generate:config",
"prebuild": "yarn generate && yarn lint && npx jest",
"build:rollup": "npx rollup -c",
"build": "yarn build:rollup",
"clean": "npx rimraf lib coverage *.log",
"test": "npx jest",
"test:cov": "npx jest --coverage",
"lint": "yarn lint:eslint && yarn lint:ts",
"lint:eslint": "npx eslint src/**/*.ts __tests__/**/*.ts --cache --fix",
"lint:ts": "npx tsc -p tsconfig.build.json --noEmit",
"prepack": "yarn build",
"release": "source .env && npx semantic-release --color --no-ci"
},
"husky": {
"hooks": {
"prepare-commit-msg": "npx --no-install devmoji -e --lint"
}
},
"ultra": {
"concurrent": [
"generate",
"prebuild",
"lint"
]
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "7.1.0",
"ts-interface-checker": "0.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@rollup/plugin-typescript": "8.2.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/jest": "26.0.23",
"@types/node": "14.14.45",
"@types/node-fetch": "2.5.10",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"concurrently": "6.0.0",
"conventional-changelog-conventionalcommits": "4.5.0",
"copyfiles": "2.4.1",
"eslint": "7.20.0",
"eslint-config-prettier": "8.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.1.1",
"jest": "26.6.3",
"node-fetch": "2.6.1",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"rollup": "2.39.1",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-sizes": "1.0.4",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "17.3.9",
"ts-interface-builder": "0.3.0",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"resolutions": {
"minimist": "^1.2.2"
}
}