UNPKG

ember-svg-jar

Version:

Best way to use SVG images in Ember applications

116 lines (115 loc) 3.27 kB
{ "name": "ember-svg-jar", "version": "2.3.1", "description": "Best way to use SVG images in Ember applications", "keywords": [ "ember-addon" ], "license": "MIT", "author": "Ivan Votti <ivanvotti@gmail.com>", "directories": { "doc": "doc", "test": "tests" }, "homepage": "https://svgjar.web.app", "repository": { "type": "git", "url": "https://github.com/ivanvotti/ember-svg-jar.git" }, "bugs": { "url": "https://github.com/ivanvotti/ember-svg-jar/issues" }, "scripts": { "s": "ember s", "lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*", "lint:js": "eslint .", "lint:hbs": "ember-template-lint .", "test": "npm-run-all lint:* test:*", "test:ember": "ember test", "test:node": "mocha node-tests/**/*-test.js", "prepublishOnly": "yarn test" }, "dependencies": { "broccoli-caching-writer": "^3.0.3", "broccoli-concat": "^3.7.4", "broccoli-funnel": "^2.0.2", "broccoli-merge-trees": "^3.0.2", "broccoli-persistent-filter": "^2.3.1", "broccoli-plugin": "^3.0.0", "broccoli-string-replace": "^0.1.2", "broccoli-svg-optimizer": "2.0.0", "cheerio": "^0.22.0", "console-ui": "^3.1.1", "ember-cli-babel": "^7.7.3", "json-stable-stringify": "^1.0.1", "lodash": "^4.17.15", "mkdirp": "^0.5.1", "path-posix": "^1.0.0" }, "devDependencies": { "@ember/optional-features": "^0.7.0", "all-contributors-cli": "^6.9.1", "broccoli-asset-rev": "^3.0.0", "broccoli-fixture": "^1.0.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "ember-cli": "~3.11.0", "ember-cli-dependency-checker": "^3.1.0", "ember-cli-eslint": "^5.1.0", "ember-cli-htmlbars": "^3.0.1", "ember-cli-htmlbars-inline-precompile": "^2.1.0", "ember-cli-inject-live-reload": "^1.8.2", "ember-cli-sri": "^2.1.1", "ember-cli-template-lint": "^1.0.0-beta.1", "ember-cli-uglify": "^2.1.0", "ember-disable-prototype-extensions": "^1.1.3", "ember-export-application-global": "^2.0.0", "ember-load-initializers": "^2.0.0", "ember-maybe-import-regenerator": "^0.1.6", "ember-native-dom-helpers": "^0.6.3", "ember-qunit": "^4.4.1", "ember-resolver": "^5.0.1", "ember-source": "~3.11.1", "ember-source-channel-url": "^1.1.0", "ember-try": "^1.0.0", "ember-welcome-page": "^3.0.0", "eslint-config-airbnb-base": "^13.2.0", "eslint-plugin-ember": "^6.7.1", "eslint-plugin-import": "^2.18.2", "eslint-plugin-node": "^9.1.0", "glob": "^7.1.4", "husky": "^3.0.4", "in-publish": "^2.0.0", "lint-staged": "^9.2.5", "loader.js": "^4.7.0", "mocha": "^6.2.0", "npm-run-all": "^4.1.5", "prettier": "^1.18.2", "qunit-dom": "^0.9.0" }, "engines": { "node": "8.* || >= 10.*" }, "ember-addon": { "configPath": "tests/dummy/config", "versionCompatibility": { "ember": ">=1.13.13" } }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "yarn test" } }, "lint-staged": { "**/*.{json,css,scss,md}": [ "prettier --write", "git add" ], "src/**/*.{js,jsx,ts,tsx}": [ "eslint --fix", "git add" ] } }