Skip to content

Commit

Permalink
Merge pull request #42 from Gavant/fixing-component-type-locations
Browse files Browse the repository at this point in the history
Fixing component type locations
  • Loading branch information
bakerac4 authored Jul 11, 2022
2 parents b818b28 + ef1c190 commit 2c4e32a
Showing 1 changed file with 129 additions and 114 deletions.
243 changes: 129 additions & 114 deletions floating-labels/package.json
Original file line number Diff line number Diff line change
@@ -1,117 +1,132 @@
{
"name": "@gavant/ember-floating-labels",
"version": "3.0.0",
"description": "Animated floating placeholder form labels for Ember apps",
"keywords": [
"ember-addon",
"ember",
"forms",
"inputs",
"labels"
],
"repository": {
"type": "git",
"url": "https://github.com/Gavant/ember-floating-labels.git"
},
"license": "MIT",
"author": "Gavant Software, Inc.",
"directories": {
"doc": "doc",
"test": "tests"
},
"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'",
"prepublishOnly": "rollup --config"
},
"dependencies": {
"@embroider/addon-shim": "^1.0.0",
"ember-truth-helpers": "^3.0.0"
},
"peerDependencies": {
"ember-source": ">= 3.24.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.16.7",
"@embroider/addon-dev": "^1.7.1",
"@rollup/plugin-babel": "^5.3.1",
"@types/ember-qunit": "^5.0.0",
"@types/ember-resolver": "^5.0.11",
"@types/ember__application": "^4.0.0",
"@types/ember__array": "^4.0.1",
"@types/ember__component": "^4.0.8",
"@types/ember__controller": "^4.0.0",
"@types/ember__debug": "^4.0.1",
"@types/ember__engine": "^4.0.0",
"@types/ember__error": "^4.0.0",
"@types/ember__object": "^4.0.2",
"@types/ember__polyfills": "^4.0.0",
"@types/ember__routing": "^4.0.7",
"@types/ember__runloop": "^4.0.1",
"@types/ember__service": "^4.0.0",
"@types/ember__string": "^3.0.9",
"@types/ember__template": "^4.0.0",
"@types/ember__test": "^4.0.0",
"@types/ember__test-helpers": "^2.6.1",
"@types/ember__utils": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-eslint": "^10.1.0",
"ember-template-lint": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ember": "^10.5.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-qunit": "^7.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"release-it": "^14.14.0",
"rollup": "^2.75.5",
"rollup-plugin-ts": "^3.0.1",
"typescript": "~4.6.3"
},
"typings": "./dist/index.d.ts",
"engines": {
"node": "14.* || >= 16"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.js",
"app-js": {
"./components/fl-input/index.js": "./dist/_app_/components/fl-input/index.js",
"./components/fl-select/index.js": "./dist/_app_/components/fl-select/index.js",
"./components/fl-textarea/index.js": "./dist/_app_/components/fl-textarea/index.js"
"name": "@gavant/ember-floating-labels",
"version": "3.0.0",
"description": "Animated floating placeholder form labels for Ember apps",
"keywords": [
"ember-addon",
"ember",
"forms",
"inputs",
"labels"
],
"repository": {
"type": "git",
"url": "https://github.com/Gavant/ember-floating-labels.git"
},
"license": "MIT",
"author": "Gavant Software, Inc.",
"directories": {
"doc": "doc",
"test": "tests"
},
"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'",
"prepublishOnly": "rollup --config"
},
"dependencies": {
"@embroider/addon-shim": "^1.0.0",
"ember-truth-helpers": "^3.0.0"
},
"peerDependencies": {
"ember-source": ">= 3.24.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.16.7",
"@embroider/addon-dev": "^1.7.1",
"@rollup/plugin-babel": "^5.3.1",
"@types/ember-qunit": "^5.0.0",
"@types/ember-resolver": "^5.0.11",
"@types/ember__application": "^4.0.0",
"@types/ember__array": "^4.0.1",
"@types/ember__component": "^4.0.8",
"@types/ember__controller": "^4.0.0",
"@types/ember__debug": "^4.0.1",
"@types/ember__engine": "^4.0.0",
"@types/ember__error": "^4.0.0",
"@types/ember__object": "^4.0.2",
"@types/ember__polyfills": "^4.0.0",
"@types/ember__routing": "^4.0.7",
"@types/ember__runloop": "^4.0.1",
"@types/ember__service": "^4.0.0",
"@types/ember__string": "^3.0.9",
"@types/ember__template": "^4.0.0",
"@types/ember__test": "^4.0.0",
"@types/ember__test-helpers": "^2.6.1",
"@types/ember__utils": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-eslint": "^10.1.0",
"ember-template-lint": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ember": "^10.5.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-qunit": "^7.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"release-it": "^14.14.0",
"rollup": "^2.75.5",
"rollup-plugin-ts": "^3.0.1",
"typescript": "~4.6.3"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
],
"components/fl-input": [
"dist/components/fl-input/index.d.ts"
],
"components/fl-select": [
"dist/components/fl-select/index.d.ts"
],
"components/fl-textarea": [
"dist/components/fl-textarea/index.d.ts"
]
}
},
"engines": {
"node": "14.* || >= 16"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.js",
"app-js": {
"./components/fl-input/index.js": "./dist/_app_/components/fl-input/index.js",
"./components/fl-select/index.js": "./dist/_app_/components/fl-select/index.js",
"./components/fl-textarea/index.js": "./dist/_app_/components/fl-textarea/index.js"
}
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*",
"./addon-main.js": "./addon-main.js"
},
"volta": {
"extends": "../package.json"
}
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*",
"./addon-main.js": "./addon-main.js"
},
"volta": {
"extends": "../package.json"
}
}

0 comments on commit 2c4e32a

Please sign in to comment.