You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
3.7 KiB
155 lines
3.7 KiB
{ |
|
"name": "svgicons2svgfont", |
|
"version": "12.0.0", |
|
"description": "Read a set of SVG icons and ouput a SVG font", |
|
"homepage": "https://github.com/nfroidure/svgicons2svgfont", |
|
"main": "src/index.js", |
|
"files": [ |
|
"src", |
|
"LICENSE", |
|
"README.md", |
|
"CHANGELOG.md" |
|
], |
|
"metapak": { |
|
"configs": [ |
|
"main", |
|
"readme", |
|
"mocha", |
|
"eslint", |
|
"codeclimate" |
|
], |
|
"data": { |
|
"files": "src/*.js bin/*.js tests/*.mocha.js", |
|
"testsFiles": "tests/*.mocha.js", |
|
"ignore": [ |
|
"tests/results" |
|
] |
|
} |
|
}, |
|
"scripts": { |
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", |
|
"cli": "env NODE_ENV=${NODE_ENV:-cli}", |
|
"cover": "nyc npm test && nyc report --reporter=html --reporter=text", |
|
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls && rm -rf ./coverage", |
|
"cz": "env NODE_ENV=${NODE_ENV:-cli} git cz", |
|
"lint": "eslint src/*.js bin/*.js tests/*.mocha.js", |
|
"metapak": "metapak", |
|
"mocha": "mocha tests/*.mocha.js", |
|
"precz": "npm t && npm run lint && npm run metapak -- -s", |
|
"prettier": "prettier --write src/*.js bin/*.js tests/*.mocha.js", |
|
"preversion": "npm t && npm run lint && npm run metapak -- -s", |
|
"test": "nyc --reporter=lcov mocha tests/*.mocha.js && npm run mocha", |
|
"version": "npm run changelog && git add CHANGELOG.md" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git://github.com/nfroidure/svgicons2svgfont" |
|
}, |
|
"keywords": [ |
|
"SVG", |
|
"icons", |
|
"font", |
|
"creation", |
|
"fonts" |
|
], |
|
"engines": { |
|
"node": ">=16.15.0" |
|
}, |
|
"dependencies": { |
|
"commander": "^9.3.0", |
|
"glob": "^8.0.3", |
|
"sax": "^1.2.4", |
|
"svg-pathdata": "^6.0.3" |
|
}, |
|
"devDependencies": { |
|
"commitizen": "^4.2.4", |
|
"conventional-changelog-cli": "^2.2.2", |
|
"coveralls": "^3.1.1", |
|
"cz-conventional-changelog": "^3.3.0", |
|
"eslint": "^8.16.0", |
|
"eslint-plugin-prettier": "^4.0.0", |
|
"metapak": "^4.0.4", |
|
"metapak-nfroidure": "^12.0.0", |
|
"mocha": "^10.0.0", |
|
"neatequal": "^1.0.0", |
|
"nyc": "^15.1.0", |
|
"prettier": "^2.6.2", |
|
"streamtest": "^2.0.0" |
|
}, |
|
"author": { |
|
"name": "Nicolas Froidure", |
|
"email": "nicolas.froidure@insertafter.com", |
|
"url": "http://insertafter.com/en/index.html" |
|
}, |
|
"contributors": [ |
|
{ |
|
"name": "Adrian Leonhard", |
|
"email": "adrianleonhard@gmail.com", |
|
"url": "https://github.com/NaridaL" |
|
}, |
|
{ |
|
"name": "Vinicius Teixeira", |
|
"email": "vinicius0026@gmail.com", |
|
"url": "https://github.com/vinicius0026" |
|
} |
|
], |
|
"license": "MIT", |
|
"bugs": { |
|
"url": "https://github.com/nfroidure/svgicons2svgfont/issues" |
|
}, |
|
"bin": { |
|
"svgicons2svgfont": "bin/svgicons2svgfont.js" |
|
}, |
|
"config": { |
|
"commitizen": { |
|
"path": "./node_modules/cz-conventional-changelog" |
|
} |
|
}, |
|
"greenkeeper": { |
|
"ignore": [ |
|
"commitizen", |
|
"cz-conventional-changelog", |
|
"conventional-changelog-cli", |
|
"mocha", |
|
"coveralls", |
|
"nyc", |
|
"eslint", |
|
"eslint-config-prettier", |
|
"prettier" |
|
] |
|
}, |
|
"nyc": { |
|
"exclude": [ |
|
"tests/*.mocha.js" |
|
] |
|
}, |
|
"eslintConfig": { |
|
"extends": [ |
|
"eslint:recommended" |
|
], |
|
"parserOptions": { |
|
"ecmaVersion": 2018, |
|
"sourceType": "script", |
|
"modules": true |
|
}, |
|
"env": { |
|
"es6": true, |
|
"node": true, |
|
"jest": true, |
|
"mocha": true |
|
}, |
|
"plugins": [ |
|
"prettier" |
|
], |
|
"rules": { |
|
"prettier/prettier": "error" |
|
} |
|
}, |
|
"prettier": { |
|
"semi": true, |
|
"printWidth": 80, |
|
"singleQuote": true, |
|
"trailingComma": "es5", |
|
"proseWrap": "always" |
|
} |
|
}
|
|
|