-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.46 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.46 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ember-material-components-web",
"version": "0.0.41",
"description": "A suite of Ember components wrapping the official Google material-components-web library",
"keywords": [
"components",
"design",
"ember",
"ember-addon",
"google",
"material",
"material-components",
"material-components-web",
"paper",
"ui"
],
"license": "MIT",
"author": "Kerrick Long",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "secondstreet/ember-material-components-web",
"lint-staged": {
"linters": {
"{{addon,app,src,tests,config,blueprints}/**/*.{js,ts,css,json},*.{js,json}}": [
"yarn run prettier --write",
"git add"
]
}
},
"scripts": {
"precommit": "lint-staged",
"add-contrib": "all-contributors add",
"build": "ember build",
"generate-contrib": "all-contributors generate",
"lint:prettier": "yarn run prettier --list-different '{addon,app,src,tests,config,blueprints}/**/*.{js,ts,css,json}' '*.{js,json}'",
"lint:js": "eslint ./*.js addon addon-test-support app config lib server test-support tests",
"start": "ember serve",
"test": "ember try:each"
},
"dependencies": {
"ember-cli-babel": "^6.6.0",
"ember-cli-htmlbars": "^1.0.10",
"ember-rollup": "^0.3.4",
"material-design-icons": "^3.0.1"
},
"devDependencies": {
"@material/animation": "0.3.1",
"@material/base": "0.2.5",
"@material/button": "0.5.0",
"@material/card": "0.1.0",
"@material/checkbox": "0.4.5",
"@material/drawer": "0.5.9",
"@material/elevation": "0.1.11",
"@material/fab": "0.3.16",
"@material/form-field": "0.2.14",
"@material/grid-list": "0.2.13",
"@material/icon-toggle": "0.1.19",
"@material/layout-grid": "0.4.4",
"@material/linear-progress": "0.1.8",
"@material/list": "0.2.17",
"@material/menu": "0.4.5",
"@material/radio": "0.2.12",
"@material/ripple": "0.8.6",
"@material/switch": "0.1.12",
"@material/tabs": "0.3.0",
"@material/textfield": "0.3.6",
"@material/theme": "0.2.0",
"@material/toolbar": "0.4.7",
"all-contributors-cli": "^4.10.1",
"broccoli-asset-rev": "^2.4.5",
"ember-cli": "~2.18.0",
"ember-cli-dependency-checker": "^2.0.0",
"ember-cli-eslint": "^4.2.1",
"ember-cli-github-pages": "0.1.2",
"ember-cli-htmlbars-inline-precompile": "^1.0.0",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-qunit": "^4.1.1",
"ember-cli-shims": "^1.2.0",
"ember-cli-sri": "^2.1.0",
"ember-cli-uglify": "^2.0.0",
"ember-cli-updater": "1.0.0",
"ember-composable-helpers": "^2.0.3",
"ember-disable-prototype-extensions": "^1.1.2",
"ember-export-application-global": "^2.0.0",
"ember-freestyle": "^0.8.0",
"ember-load-initializers": "^1.0.0",
"ember-maybe-import-regenerator": "0.1.6",
"ember-native-dom-event-dispatcher": "0.6.4",
"ember-native-dom-helpers": "0.5.10",
"ember-qunit-nice-errors": "1.2.0",
"ember-resolver": "^4.0.0",
"ember-source": "~2.18.0",
"eslint-plugin-ember": "^5.0.0",
"eslint-plugin-node": "^5.2.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"loader.js": "^4.2.3",
"prettier": "~1.18.2"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://secondstreet.github.io/ember-material-components-web/",
"versionCompatibility": {
"ember": ">=2.10.0"
}
}
}