UNPKG

2.92 kBJSONView Raw
1{
2 "name": "svgicons2svgfont",
3 "version": "9.1.0",
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 "cover": "istanbul cover _mocha --report html -- tests/*.mocha.js -R spec -t 5000",
24 "coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
25 "cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
26 "lint": "eslint src/*.js bin/*.js tests/*.mocha.js",
27 "metapak": "metapak",
28 "mocha": "mocha tests/*.mocha.js",
29 "prettier": "prettier --write src/*.js bin/*.js tests/*.mocha.js",
30 "preversion": "npm t && npm run lint && npm run metapak -s",
31 "test": "npm run mocha",
32 "version": "npm run changelog && git add CHANGELOG.md"
33 },
34 "repository": {
35 "type": "git",
36 "url": "git://github.com/nfroidure/svgicons2svgfont"
37 },
38 "keywords": [
39 "SVG",
40 "icons",
41 "font",
42 "creation",
43 "fonts"
44 ],
45 "engines": {
46 "node": ">=6.9.5"
47 },
48 "dependencies": {
49 "commander": "^2.12.2",
50 "geometry-interfaces": "^1.1.4",
51 "glob": "^7.1.2",
52 "neatequal": "^1.0.0",
53 "readable-stream": "^2.3.3",
54 "sax": "^1.2.4",
55 "string.fromcodepoint": "^0.2.1",
56 "string.prototype.codepointat": "^0.2.0",
57 "svg-pathdata": "^5.0.0",
58 "transformation-matrix-js": "^2.7.1"
59 },
60 "devDependencies": {
61 "commitizen": "^2.9.6",
62 "conventional-changelog-cli": "^1.3.5",
63 "coveralls": "^2.13.3",
64 "cz-conventional-changelog": "^2.0.0",
65 "eslint": "^4.12.1",
66 "eslint-plugin-prettier": "^2.3.1",
67 "istanbul": "^0.4.5",
68 "metapak": "1.0.1",
69 "metapak-nfroidure": "^2.0.2",
70 "mocha": "^3.5.3",
71 "mocha-lcov-reporter": "^1.3.0",
72 "prettier": "^1.8.2",
73 "streamtest": "^1.2.2"
74 },
75 "author": "Nicolas Froidure",
76 "contributors": [
77 "Adrian Leonhard <adrianleonhard@gmail.com> (https://github.com/NaridaL)"
78 ],
79 "license": "MIT",
80 "bugs": {
81 "url": "https://github.com/nfroidure/svgicons2svgfont/issues"
82 },
83 "bin": {
84 "svgicons2svgfont": "bin/svgicons2svgfont.js"
85 },
86 "config": {
87 "commitizen": {
88 "path": "./node_modules/cz-conventional-changelog"
89 }
90 },
91 "greenkeeper": {
92 "ignore": [
93 "commitizen",
94 "cz-conventional-changelog",
95 "conventional-changelog-cli",
96 "mocha",
97 "mocha-lcov-reporter",
98 "coveralls",
99 "istanbul",
100 "eslint",
101 "eslint-config-prettier",
102 "prettier"
103 ]
104 }
105}