ember-is-component
Version:
Provides a helper to check if a component exists.
78 lines (77 loc) • 2.32 kB
JSON
{
"name": "ember-is-component",
"version": "1.0.0",
"description": "Provides a helper to check if a component exists.",
"keywords": [
"ember",
"emberjs",
"ember-addon",
"is-component",
"helper"
],
"homepage": "https://github.com/BlueCutOfficial/ember-is-component",
"repository": "https://github.com/BlueCutOfficial/ember-is-component",
"bugs": "https://github.com/BlueCutOfficial/ember-is-component/issues",
"license": "MIT",
"author": {
"name": "Marine Dunstetter",
"url": "https://github.com/BlueCutOfficial"
},
"files": [
"addon-main.cjs",
"dist"
],
"scripts": {
"build": "rollup --config",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js:fix": "eslint . --fix",
"start": "rollup --config --watch",
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
"prepack": "rollup --config"
},
"dependencies": {
"@embroider/addon-shim": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.0",
"@babel/plugin-syntax-decorators": "^7.17.0",
"@embroider/addon-dev": "^3.0.0",
"@rollup/plugin-babel": "^5.3.0",
"concurrently": "^7.2.1",
"ember-template-lint": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-ember": "^10.5.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rollup": "^2.67.0",
"rollup-plugin-copy": "^3.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.cjs",
"app-js": {
"./helpers/is-component.js": "./dist/_app_/helpers/is-component.js"
}
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./addon-main.js": "./addon-main.cjs"
}
}