-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
35 lines (35 loc) · 978 Bytes
/
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
{
"name": "@gitmoji/gitmoji-regex",
"version": "1.0.0",
"description": "a gitmoji regex to for both gitmoji code and gitmoji unicode",
"homepage": "https://github.com/arvinxx/gitmoji-commit-workflow/tree/master/packages/gitmoji-regex",
"bugs": {
"url": "https://github.com/arvinxx/gitmoji-commit-workflow/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/arvinxx/gitmoji-commit-workflow.git"
},
"license": "ISC",
"author": "arvinxx <[email protected]>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "father build",
"clean": "rm -rf es lib dist build coverage .eslintcache",
"cov": "jest --coverage",
"doctor": "father doctor",
"prepublishOnly": "npm run doctor && npm run build",
"test": "jest"
},
"dependencies": {
"emoji-regex": "^10",
"gitmojis": "^3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}