UNPKG

2.57 kBJSONView Raw
1{
2 "name": "svgicons2svgfont",
3 "version": "10.0.3",
4 "description": "Read a set of SVG icons and ouput a SVG font",
5 "homepage": "https://github.com/nfroidure/svgicons2svgfont",
6 "main": "src/index.js",
7 "metapak": {
8 "configs": [
9 "readme",
10 "mocha",
11 "eslint",
12 "travis",
13 "codeclimate"
14 ],
15 "data": {
16 "files": "src/*.js bin/*.js tests/*.mocha.js",
17 "testsFiles": "tests/*.mocha.js"
18 }
19 },
20 "scripts": {
21 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
22 "cli": "env NODE_ENV=${NODE_ENV:-cli}",
23 "cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
24 "lint": "eslint src/*.js bin/*.js tests/*.mocha.js",
25 "metapak": "metapak",
26 "mocha": "mocha tests/*.mocha.js",
27 "prettier": "prettier --write src/*.js bin/*.js tests/*.mocha.js",
28 "preversion": "npm t && npm run lint && npm run metapak -s",
29 "test": "nyc --reporter=lcov mocha tests/*.mocha.js",
30 "version": "npm run changelog && git add CHANGELOG.md"
31 },
32 "repository": {
33 "type": "git",
34 "url": "git://github.com/nfroidure/svgicons2svgfont"
35 },
36 "keywords": [
37 "SVG",
38 "icons",
39 "font",
40 "creation",
41 "fonts"
42 ],
43 "engines": {
44 "node": ">=12.0.0"
45 },
46 "dependencies": {
47 "commander": "^7.2.0",
48 "geometry-interfaces": "^1.1.4",
49 "glob": "^7.1.6",
50 "neatequal": "^1.0.0",
51 "readable-stream": "^3.4.0",
52 "sax": "^1.2.4",
53 "svg-pathdata": "^6.0.0"
54 },
55 "devDependencies": {
56 "commitizen": "^4.0.3",
57 "conventional-changelog-cli": "^2.0.31",
58 "cz-conventional-changelog": "^3.0.2",
59 "eslint": "^7.25.0",
60 "eslint-plugin-prettier": "^3.1.2",
61 "metapak": "^4.0.2",
62 "metapak-nfroidure": "^11.0.7",
63 "mocha": "^8.3.2",
64 "nyc": "^15.1.0",
65 "prettier": "^2.2.1",
66 "streamtest": "^2.0.0"
67 },
68 "author": "Nicolas Froidure",
69 "contributors": [
70 "Adrian Leonhard <adrianleonhard@gmail.com> (https://github.com/NaridaL)",
71 "Vinicius Teixeira <vinicius0026@gmail.com> (https://github.com/vinicius0026"
72 ],
73 "license": "MIT",
74 "bugs": {
75 "url": "https://github.com/nfroidure/svgicons2svgfont/issues"
76 },
77 "bin": {
78 "svgicons2svgfont": "bin/svgicons2svgfont.js"
79 },
80 "config": {
81 "commitizen": {
82 "path": "./node_modules/cz-conventional-changelog"
83 }
84 },
85 "greenkeeper": {
86 "ignore": [
87 "commitizen",
88 "cz-conventional-changelog",
89 "conventional-changelog-cli",
90 "mocha",
91 "coveralls",
92 "istanbul",
93 "eslint",
94 "eslint-config-prettier",
95 "prettier"
96 ]
97 }
98}