ember-scoped-css 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) 2023
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,32 @@
1
+ # ember-scoped-css
2
+
3
+ [Short description of the addon.]
4
+
5
+
6
+ ## Compatibility
7
+
8
+ * Ember.js v3.28 or above
9
+ * Ember CLI v3.28 or above
10
+ * Node.js v14 or above
11
+
12
+
13
+ ## Installation
14
+
15
+ ```
16
+ ember install ember-scoped-css
17
+ ```
18
+
19
+
20
+ ## Usage
21
+
22
+ [Longer description of how to use the addon in apps.]
23
+
24
+
25
+ ## Contributing
26
+
27
+ See the [Contributing](CONTRIBUTING.md) guide for details.
28
+
29
+
30
+ ## License
31
+
32
+ This project is licensed under the [MIT License](LICENSE.md).
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,80 @@
1
+ {
2
+ "name": "ember-scoped-css",
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": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
18
+ "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"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": "concurrently \"npm:lint\" \"npm:test:*\" --names \"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.2.0"
31
+ },
32
+ "devDependencies": {
33
+ "@ember/optional-features": "^2.0.0",
34
+ "@ember/string": "^3.0.1",
35
+ "@ember/test-helpers": "^2.9.3",
36
+ "@embroider/test-setup": "^2.0.2",
37
+ "@glimmer/component": "^1.1.2",
38
+ "@glimmer/tracking": "^1.1.2",
39
+ "babel-eslint": "^10.1.0",
40
+ "broccoli-asset-rev": "^3.0.0",
41
+ "concurrently": "^7.6.0",
42
+ "ember-auto-import": "^2.5.0",
43
+ "ember-cli": "~4.10.0",
44
+ "ember-cli-dependency-checker": "^3.3.1",
45
+ "ember-cli-inject-live-reload": "^2.1.0",
46
+ "ember-cli-sri": "^2.1.1",
47
+ "ember-cli-terser": "^4.0.2",
48
+ "ember-load-initializers": "^2.1.2",
49
+ "ember-page-title": "^7.0.0",
50
+ "ember-qunit": "^6.1.1",
51
+ "ember-resolver": "^10.0.0",
52
+ "ember-source": "~4.10.0",
53
+ "ember-source-channel-url": "^3.0.0",
54
+ "ember-template-lint": "^5.3.1",
55
+ "ember-try": "^2.0.0",
56
+ "eslint": "^7.32.0",
57
+ "eslint-config-prettier": "^8.6.0",
58
+ "eslint-plugin-ember": "^11.4.3",
59
+ "eslint-plugin-n": "^15.6.1",
60
+ "eslint-plugin-prettier": "^4.2.1",
61
+ "eslint-plugin-qunit": "^7.3.4",
62
+ "loader.js": "^4.7.0",
63
+ "prettier": "^2.8.3",
64
+ "qunit": "^2.19.3",
65
+ "qunit-dom": "^2.0.0",
66
+ "webpack": "^5.75.0"
67
+ },
68
+ "peerDependencies": {
69
+ "ember-source": "^3.28.0 || ^4.0.0"
70
+ },
71
+ "engines": {
72
+ "node": "14.* || 16.* || >= 18"
73
+ },
74
+ "ember": {
75
+ "edition": "octane"
76
+ },
77
+ "ember-addon": {
78
+ "configPath": "tests/dummy/config"
79
+ }
80
+ }