-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.98 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.98 KB
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
{
"name": "git-emoji-commit",
"version": "1.23.0",
"description": "Simple CLI to encourage more concise commits using emojis.",
"main": "dist/cli.js",
"type": "module",
"bin": {
"git-emoji-commit": "dist/cli.js",
"gec": "dist/cli.js"
},
"files": [
"package.json",
"dist"
],
"scripts": {
"test": "jest --config jest.config.cjs",
"test:watch": "jest --config jest.config.cjs --watch",
"prebuild": "node -e \"const fs = require('fs'); const pkg = require('./package.json'); fs.writeFileSync('./src/version.ts', 'export const version = \\\"' + pkg.version + '\\\";');\"",
"build": "npm run prebuild && tsc",
"alpha-release": "npm version prerelease --preid=alpha && npm run build && npm publish && git push --follow-tags",
"patch-release": "npm version patch && npm run build && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm run build && npm publish && git push --follow-tags",
"major-release": "npm version major && npm run build && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sodiumhalogenteam/git-emoji.git"
},
"author": "Sodium Halogen",
"contributors": [
"Chance Smith (https://github.com/chancesmith)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/sodiumhalogenteam/git-emoji/issues"
},
"homepage": "https://github.com/sodiumhalogenteam/git-emoji#readme",
"dependencies": {
"commander": "^10.0.0",
"inquirer": "^9.1.5"
},
"keywords": [
"git",
"emojis",
"git emojis",
"commit messages"
],
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.21.4",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"babel-jest": "^29.5.0",
"eslint": "^7.7.0",
"execa": "^7.1.1",
"jest": "^29.5.0",
"prettier": "^2.0.5",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}