forked from webark/ember-component-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ember-component-css",
"version": "0.7.4",
"description": "An Ember CLI addon which allows you to specify styles for individual components",
"keywords": [
"ember-addon"
],
"repository": {
"type": "git",
"url": "https://github.com/ebryn/ember-component-css.git"
},
"license": "MIT",
"author": "Erik Bryn",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"prepublish": "node ./bin/install-test-addons.js",
"release": "standard-version",
"build": "ember build",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "ember test",
"test:all": "ember try:each"
},
"dependencies": {
"broccoli-concat": "^3.7.3",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.2",
"broccoli-persistent-filter": "^2.1.1",
"broccoli-plugin": "^1.3.1",
"broccoli-replace": "^0.12.0",
"broccoli-style-manifest": "^1.5.2",
"ember-cli-babel": "^7.1.4",
"ember-cli-version-checker": "^3.0.1",
"ember-getowner-polyfill": "^2.2.0",
"fs-tree-diff": "^0.5.9",
"md5": "^2.2.1",
"postcss": "^7.0.6",
"postcss-less": "^3.1.0",
"postcss-scss": "^2.0.0",
"postcss-selector-namespace": "^2.0.0",
"rsvp": "^4.8.4",
"walk-sync": "^1.0.1"
},
"devDependencies": {
"broccoli-asset-rev": "^3.0.0",
"ember-cli": "~3.7.1",
"ember-cli-dependency-checker": "^3.0.0",
"ember-cli-eslint": "^5.0.0",
"ember-cli-htmlbars": "^3.0.1",
"ember-cli-htmlbars-inline-precompile": "^2.0.0",
"ember-cli-inject-live-reload": "^2.0.1",
"ember-cli-sri": "^2.1.1",
"ember-cli-styles-preprocessor": "^0.5.5",
"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-qunit": "^4.1.2",
"ember-resolver": "^5.0.1",
"ember-source": "^3.6.1",
"ember-source-channel-url": "^1.1.0",
"ember-try": "^1.1.0",
"eslint-plugin-ember": "^6.0.1",
"eslint-plugin-node": "^8.0.0",
"fs-extra": "^7.0.1",
"loader.js": "^4.7.0",
"no-style-files-yet": "file:./tests/dummy/lib/no-style-files-yet",
"qunit-dom": "^0.8.0",
"second-test-addon": "file:./tests/dummy/lib/second-test-addon",
"standard-version": "^4.4.0",
"test-addon": "file:./tests/dummy/lib/test-addon"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"ember-addon": {
"before": [
"ember-cli-styles-preprocessor",
"ember-cli-less",
"ember-cli-sass",
"ember-cli-stylus",
"ember-cli-postcss"
],
"configPath": "tests/dummy/config"
}
}