| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "name": "svgo",
- "version": "0.7.2",
- "description": "Nodejs-based tool for optimizing SVG vector graphics files",
- "keywords": [
- "svgo",
- "svg",
- "optimize",
- "minify"
- ],
- "homepage": "https://github.com/svg/svgo",
- "bugs": {
- "url": "https://github.com/svg/svgo/issues",
- "email": "kir@soulshine.in"
- },
- "author": {
- "name": "Kir Belevich",
- "email": "kir@soulshine.in",
- "url": "https://github.com/deepsweet"
- },
- "contributors": [
- {
- "name": "Sergey Belov",
- "email": "peimei@ya.ru",
- "url": "http://github.com/arikon"
- },
- {
- "name": "Lev Solntsev",
- "email": "lev.sun@ya.ru",
- "url": "http://github.com/GreLI"
- }
- ],
- "repository": {
- "type": "git",
- "url": "git://github.com/svg/svgo.git"
- },
- "main": "./lib/svgo.js",
- "bin": {
- "svgo": "./bin/svgo"
- },
- "directories": {
- "bin": "./bin",
- "lib": "./lib",
- "example": "./examples"
- },
- "scripts": {
- "test": "set NODE_ENV=test && mocha",
- "jshint": "jshint --show-non-errors ."
- },
- "dependencies": {
- "sax": "~1.2.1",
- "coa": "~1.0.1",
- "js-yaml": "~3.7.0",
- "colors": "~1.1.2",
- "whet.extend": "~0.9.9",
- "mkdirp": "~0.5.1",
- "csso": "~2.3.1"
- },
- "devDependencies": {
- "mocha": "~3.2.0",
- "should": "11.2.0",
- "istanbul": "~0.4.5",
- "mocha-istanbul": "~0.3.0",
- "coveralls": "~2.11.14"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "license": "MIT"
- }
|