-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.79 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": "whatsmyfood",
"version": "0.0.1",
"description": "A mobile app to remember your fav food at each restaurant you eat.",
"main": "index.js",
"scripts": {
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "emoji-cz",
"emoji-cz": {
"types": {
"Feat": {
"emoji": "✨",
"description": "A new feature"
},
"Fix": {
"emoji": "🐛",
"description": "A bug fix"
},
"Docs": {
"emoji": "📚",
"description": "Documentation only changes"
},
"Style": {
"emoji": "🎨",
"description": "Changes that do not affect the meaning of the code"
},
"Refactor": {
"emoji": "🔨",
"description": "A code change that neither fixes a bug nor adds a feature"
},
"Perf": {
"emoji": "🚀",
"description": "A code change that improves performance"
},
"Test": {
"emoji": "🚨",
"description": "Adding missing tests or correcting existing tests"
},
"Chore": {
"emoji": "🔩",
"description": "Other changes that don't modify src or test files"
}
},
"format": "[emoji] [name]: [subject]"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharathvignesh/whatsMyFood.git"
},
"author": "Sharath Vignesh, Suresh Murali, Lakshman Diwaakar",
"license": "ISC",
"bugs": {
"url": "https://github.com/sharathvignesh/whatsMyFood/issues"
},
"homepage": "https://github.com/sharathvignesh/whatsMyFood#readme",
"devDependencies": {
"commitizen": "^2.10.1",
"emoji-cz": "^0.3.0"
}
}