forked from itgalaxy/favicons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.72 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
66
67
68
69
{
"name": "favicons",
"version": "5.3.0",
"description": "Favicon generator for Node.js",
"main": "dist/index.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/favicons.git"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test-only": "ava --require @babel/register test/**/*.test.js",
"test": "npm run test-only",
"coverage": "nyc npm test",
"prepare": "gulp"
},
"keywords": [
"favicon",
"ico",
"generator",
"node",
"realfavicongenerator",
"gulpfriendly"
],
"author": "Hayden Bleasel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/itgalaxy/favicons/issues"
},
"homepage": "https://github.com/itgalaxy/favicons",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"cheerio": "^1.0.0-rc.2",
"clone": "^2.1.2",
"colors": "^1.3.2",
"core-js": "^2.5.7",
"image-size": "^0.6.3",
"jimp": "^0.5.6",
"jsontoxml": "^1.0.1",
"lodash.defaultsdeep": "^4.6.0",
"require-directory": "^2.1.1",
"through2": "^3.0.0",
"tinycolor2": "^1.4.1",
"to-ico": "^1.1.5",
"util.promisify": "^1.0.0",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-rc.2",
"babel-plugin-istanbul": "^5.1.0",
"dir-compare": "^1.4.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2"
}
}