UNPKG

2.58 kBJSONView Raw
1{
2 "name": "svgicons2svgfont",
3 "version": "6.0.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 ],
11 "data": {
12 "files": "src/*.js bin/*.js tests/*.mocha.js",
13 "testsFiles": "tests/*.mocha.js"
14 }
15 },
16 "scripts": {
17 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
18 "cli": "env NODE_ENV=${NODE_ENV:-cli}",
19 "cover": "istanbul cover _mocha --report html -- tests/*.mocha.js -R spec -t 5000",
20 "coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
21 "cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
22 "lint": "eslint src/*.js bin/*.js tests/*.mocha.js",
23 "metapak": "metapak || exit 0",
24 "postinstall": "npm run metapak --silent",
25 "preversion": "npm t && npm run lint",
26 "test": "mocha tests/*.mocha.js",
27 "version": "npm run changelog && git add CHANGELOG.md"
28 },
29 "repository": {
30 "type": "git",
31 "url": "git://github.com/nfroidure/svgicons2svgfont"
32 },
33 "keywords": [
34 "SVG",
35 "icons",
36 "font",
37 "creation",
38 "fonts"
39 ],
40 "engines": {
41 "node": ">=6.9.5"
42 },
43 "dependencies": {
44 "commander": "^2.9.0",
45 "debug": "2.6.1",
46 "neatequal": "^1.0.0",
47 "readable-stream": "^2.0.4",
48 "sax": "^1.1.5",
49 "string.fromcodepoint": "^0.2.1",
50 "string.prototype.codepointat": "^0.2.0",
51 "svg-pathdata": "^3.1.0"
52 },
53 "devDependencies": {
54 "commitizen": "^2.9.6",
55 "conventional-changelog-cli": "^1.2.0",
56 "coveralls": "2.11.15",
57 "cz-conventional-changelog": "^2.0.0",
58 "eslint": "3.16.0",
59 "eslint-config-simplifield": "4.1.1",
60 "istanbul": "0.4.5",
61 "metapak": "0.0.21",
62 "metapak-nfroidure": "^0.7.0",
63 "mocha": "3.2.0",
64 "mocha-lcov-reporter": "1.3.0",
65 "streamtest": "^1.2.1"
66 },
67 "author": "Nicolas Froidure",
68 "license": "MIT",
69 "bugs": {
70 "url": "https://github.com/nfroidure/svgicons2svgfont/issues"
71 },
72 "bin": {
73 "svgicons2svgfont": "bin/svgicons2svgfont.js"
74 },
75 "config": {
76 "commitizen": {
77 "path": "./node_modules/cz-conventional-changelog"
78 }
79 },
80 "greenkeeper": {
81 "ignore": [
82 "debug",
83 "eslint",
84 "eslint-config-simplifield",
85 "mocha",
86 "mocha-lcov-reporter",
87 "commitizen",
88 "cz-conventional-changelog",
89 "coveralls",
90 "istanbul",
91 "conventional-changelog-cli"
92 ]
93 }
94}