ember-headless-table 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ ember-headless-table
2
+ ==============================================================================
3
+
4
+ [Short description of the addon.]
5
+
6
+
7
+ Compatibility
8
+ ------------------------------------------------------------------------------
9
+
10
+ * Ember.js v3.24 or above
11
+ * Ember CLI v3.24 or above
12
+ * Node.js v12 or above
13
+
14
+
15
+ Installation
16
+ ------------------------------------------------------------------------------
17
+
18
+ ```
19
+ ember install ember-headless-table
20
+ ```
21
+
22
+
23
+ Usage
24
+ ------------------------------------------------------------------------------
25
+
26
+ [Longer description of how to use the addon in apps.]
27
+
28
+
29
+ Contributing
30
+ ------------------------------------------------------------------------------
31
+
32
+ See the [Contributing](CONTRIBUTING.md) guide for details.
33
+
34
+
35
+ License
36
+ ------------------------------------------------------------------------------
37
+
38
+ This project is licensed under the [MIT License](LICENSE.md).
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = function (/* environment, appConfig */) {
4
+ return {};
5
+ };
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+ name: require('./package').name,
5
+ };
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "ember-headless-table",
3
+ "version": "0.0.0",
4
+ "description": "The default blueprint for ember-cli addons.",
5
+ "keywords": [
6
+ "ember-addon"
7
+ ],
8
+ "repository": "",
9
+ "license": "MIT",
10
+ "author": "",
11
+ "directories": {
12
+ "doc": "doc",
13
+ "test": "tests"
14
+ },
15
+ "scripts": {
16
+ "build": "ember build --environment=production",
17
+ "lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
18
+ "lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
19
+ "lint:hbs": "ember-template-lint .",
20
+ "lint:hbs:fix": "ember-template-lint . --fix",
21
+ "lint:js": "eslint . --cache",
22
+ "lint:js:fix": "eslint . --fix",
23
+ "start": "ember serve",
24
+ "test": "npm-run-all lint test:*",
25
+ "test:ember": "ember test",
26
+ "test:ember-compatibility": "ember try:each"
27
+ },
28
+ "dependencies": {
29
+ "ember-cli-babel": "^7.26.11",
30
+ "ember-cli-htmlbars": "^6.0.1"
31
+ },
32
+ "devDependencies": {
33
+ "@ember/optional-features": "^2.0.0",
34
+ "@ember/test-helpers": "^2.6.0",
35
+ "@embroider/test-setup": "^0.49.0",
36
+ "@glimmer/component": "^1.0.4",
37
+ "@glimmer/tracking": "^1.0.4",
38
+ "babel-eslint": "^10.1.0",
39
+ "broccoli-asset-rev": "^3.0.0",
40
+ "ember-auto-import": "^2.2.4",
41
+ "ember-cli": "~4.1.0",
42
+ "ember-cli-dependency-checker": "^3.2.0",
43
+ "ember-cli-inject-live-reload": "^2.1.0",
44
+ "ember-cli-sri": "^2.1.1",
45
+ "ember-cli-terser": "^4.0.2",
46
+ "ember-disable-prototype-extensions": "^1.1.3",
47
+ "ember-export-application-global": "^2.0.1",
48
+ "ember-load-initializers": "^2.1.2",
49
+ "ember-page-title": "^7.0.0",
50
+ "ember-qunit": "^5.1.5",
51
+ "ember-resolver": "^8.0.3",
52
+ "ember-source": "~4.1.0",
53
+ "ember-source-channel-url": "^3.0.0",
54
+ "ember-template-lint": "^3.15.0",
55
+ "ember-try": "^2.0.0",
56
+ "eslint": "^7.32.0",
57
+ "eslint-config-prettier": "^8.3.0",
58
+ "eslint-plugin-ember": "^10.5.8",
59
+ "eslint-plugin-node": "^11.1.0",
60
+ "eslint-plugin-prettier": "^4.0.0",
61
+ "eslint-plugin-qunit": "^7.2.0",
62
+ "loader.js": "^4.7.0",
63
+ "npm-run-all": "^4.1.5",
64
+ "prettier": "^2.5.1",
65
+ "qunit": "^2.17.2",
66
+ "qunit-dom": "^2.0.0",
67
+ "webpack": "^5.65.0"
68
+ },
69
+ "engines": {
70
+ "node": "12.* || 14.* || >= 16"
71
+ },
72
+ "ember": {
73
+ "edition": "octane"
74
+ },
75
+ "ember-addon": {
76
+ "configPath": "tests/dummy/config"
77
+ }
78
+ }