-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.19 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ember-cli-textarea-autosize",
"version": "3.16.2",
"description": "An Ember addon that provides a textarea component that adjusts its height according to the supplied text. Included are also several mixins that can be used to ensure `autofocus` works properly, focused text inputs have their text selected, and ctrl+enter will submit the nearest form.",
"keywords": [
"ember-addon",
"textarea-autosize",
"textarea",
"autosize",
"autofocus",
"select all",
"ctrl+enter submit",
"control enter submit",
"cybertooth"
],
"repository": {
"type": "git",
"url": "https://github.com/cybertoothca/ember-cli-textarea-autosize.git"
},
"license": "MIT",
"author": {
"name": "cybertooth.io",
"email": "dev@cybertooth.io",
"url": "http://cybertooth.io"
},
"contributors": [
{
"name": "Dan Nelson",
"email": "dan@cybertooth.io",
"url": "https://nadnoslen.github.io/"
}
],
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build --environment=production",
"ember-cli-update": "ember-cli-update",
"ember-cli-update:codemods": "ember-cli-update --run-codemods",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"start": "ember serve",
"test": "ember test",
"test:all": "ember try:each",
"update-browserslist": "npx browserslist@latest --update-db"
},
"dependencies": {
"autosize": "^5.0.1",
"ember-auto-import": "^2.4.1",
"ember-cli-babel": "^7.17.2",
"ember-cli-htmlbars": "^6.0.1",
"ember-cli-text-support-mixins": "~3.16.3"
},
"devDependencies": {
"@ember/jquery": "^2.0.0",
"@ember/optional-features": "^2.0.0",
"@glimmer/component": "^1.0.0",
"@glimmer/tracking": "^1.0.0",
"babel-eslint": "^10.0.3",
"bootstrap": "^3.4.1",
"bootstrap-sass": "^3.4.3",
"bootswatch": "^3.4.1",
"broccoli-asset-rev": "^3.0.0",
"ember-cli": "~3.16.2",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-deploy": "^1.0.2",
"ember-cli-deploy-build": "^2.0.0",
"ember-cli-deploy-gzip": "^2.0.1",
"ember-cli-deploy-s3": "^3.1.0",
"ember-cli-eslint": "^5.1.0",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-sass": "^10.0.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-template-lint": "^2.0.2",
"ember-cli-uglify": "^3.0.0",
"ember-cli-update": "~1.0",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.1",
"ember-load-initializers": "^2.1.2",
"ember-maybe-import-regenerator": "^1.0.0",
"ember-qunit": "^4.6.0",
"ember-resolver": "^8.0.3",
"ember-source": "~3.16.0",
"ember-source-channel-url": "^3.0.0",
"ember-try": "^2.0.0",
"eslint-plugin-ember": "^8.14.0",
"eslint-plugin-node": "^11.1.0",
"font-awesome": "4.7",
"loader.js": "^4.7.0",
"prettier": "^2.6.2",
"qunit-dom": "^2.0.0",
"sass": "~1.50.0",
"webpack": "^5.72.0"
},
"engines": {
"node": "10.* || >= 12"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}