-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "iconr",
"version": "0.8.5",
"description": "CLI tool that consumes a directory of SVG images and outputs a CSS file of inlined data as well as a directory of PNG images for fallback if necessary.",
"preferGlobal": true,
"engines": {
"node": ">=12.0.0"
},
"main": "./bin/iconr.js",
"bin": {
"iconr": "./bin/iconr.js"
},
"files": [
"bin",
"lang",
"lib"
],
"scripts": {
"docs": "node ./generate-readme.js",
"example": "npm-run-all example:*",
"example:cli": "rm -rf ./example/iconr_output && node ./bin/iconr ./example/svg ./example/iconr_output --analytics --debug --pretty --verbose --filename=\"icons.css\" --classname=\"icon-\"",
"example:server": "http-server ./example -p 4321 -o",
"lint": "eslint . --cache --fix && echo \"eslint: no lint errors found\" || true",
"preversion": "npm run docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"svg",
"png",
"css",
"datauri",
"fallback"
],
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"cssbeautify": "^0.3.0",
"gzip-size": "^6.0.0",
"mime": "^3.0.0",
"phantomjs-prebuilt": "^2.1.16",
"progger": "^1.0.0",
"rimraf": "^5.0.10",
"svgo": "^0.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-okize": "^1.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"http-server": "^14.1.1",
"json2markdown": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/okize/iconr.git"
},
"bugs": "https://github.com/okize/iconr/issues",
"homepage": "https://github.com/okize/iconr/",
"author": {
"name": "Morgan Wigmanich",
"email": "[email protected]",
"url": "https://github.com/okize"
},
"license": "MIT"
}