-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) 路 1.07 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) 路 1.07 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
{
"name": "commoji",
"version": "1.0.0",
"description": "Automatically prepend your commit messages with the appropriate emoji",
"bin": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirmerr/commoji.git"
},
"keywords": [
"node",
"module",
"commoji",
"emoji",
"commit",
"git",
"hook"
],
"contributors": [
"Tiffany Le-Nguyen <letiffany.nguyen@gmail.com> (https://github.com/sirMerr)",
"Matan Kushner <hello@matchai.me> (https://matchai.me)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/sirmerr/commoji/issues"
},
"homepage": "https://github.com/sirmerr/commoji#readme",
"dependencies": {
"cosmiconfig": "^5.0.7",
"emoji-regex": "^7.0.3"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^23.6.0",
"prettier": "^1.15.3"
},
"engines": {
"node": ">=8.0.0"
}
}