-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "emoji-favicon-cli",
"version": "3.0.1",
"description": "A CLI tool to generate favicons from emoji names",
"keywords": [
"emoji",
"favicon",
"cli"
],
"homepage": "https://github.com/bacongravy/emoji-favicon-cli",
"bugs": "https://github.com/bacongravy/emoji-favicon-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/bacongravy/emoji-favicon-cli"
},
"license": "ISC",
"author": "David Kramer <bacongravy@icloud.com>",
"main": "src/index.js",
"bin": {
"emoji-favicon-cli": "bin/emoji-favicon-cli"
},
"files": [
"bin/",
"src/"
],
"scripts": {
"lint": "eslint src --color",
"lint:check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"lint:fix": "eslint src --fix --color",
"start": "node bin/emoji-favicon-cli",
"test": "echo \"Error: no test specified\" && exit 1",
"version:major": "npm version major -m 'bump version for release (v%s)'",
"version:minor": "npm version minor -m 'bump version for release (v%s)'",
"version:patch": "npm version patch -m 'bump version for release (v%s)'"
},
"dependencies": {
"@fiahfy/ico": "0.0.4",
"emojilib": "^2.4.0",
"enquirer": "^2.3.6",
"meow": "^6.1.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"prettier": "^2.3.2"
}
}