-
Notifications
You must be signed in to change notification settings - Fork 21
/
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.4.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 <[email protected]>",
"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.1",
"commander": "7.2.0",
"ts-interface-checker": "1.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "19.0.2",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-typescript": "8.2.5",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.1",
"@types/jest": "26.0.24",
"@types/node": "15.12.2",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"concurrently": "6.2.2",
"conventional-changelog-conventionalcommits": "4.6.3",
"copyfiles": "2.4.1",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.7",
"eslint-plugin-prettier": "3.4.1",
"husky": "6.0.0",
"jest": "27.0.6",
"node-fetch": "2.6.7",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"rollup": "2.79.2",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-sizes": "1.0.6",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "17.4.7",
"ts-interface-builder": "0.3.3",
"ts-jest": "27.0.7",
"ts-node": "10.0.0",
"typescript": "4.3.5"
},
"resolutions": {
"minimist": "^1.2.2"
}
}