-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
110 lines (110 loc) · 3.13 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
108
109
110
{
"name": "ember-attacher",
"version": "3.2.0",
"description": "Tooltips and popovers for Ember.js apps",
"keywords": [
"ember-addon",
"tooltips",
"popovers"
],
"repository": "https://github.com/tylerturdenpants/ember-attacher",
"license": "MIT",
"author": {
"name": "Kyle Bishop",
"email": "kybishop@gmail.com",
"url": "http://kybishop.com"
},
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"deploy": "ember build && ember github-pages:commit --message \"Deploy gh-pages from commit $(git rev-parse HEAD)\" && git push origin gh-pages:gh-pages",
"release": "release-it",
"lint:js": "eslint .",
"lint": "eslint .",
"start": "ember serve",
"test": "ember test",
"test:all": "ember try:each"
},
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"babel-plugin-filter-imports": "^4.0.0",
"broccoli-funnel": "~3.0.8",
"ember-auto-import": "^2.7.2",
"ember-cli-babel": "^8.2.0",
"ember-cli-htmlbars": "^6.3.0",
"ember-cli-sass": "^11.0.1",
"ember-maybe-in-element": "^2.1.0",
"sass": "^1.72.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.10",
"@babel/helper-get-function-arity": "^7.16.7",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@ember/optional-features": "^2.0.0",
"@ember/render-modifiers": "^2.0.5",
"@ember/string": "^3.1.1",
"@ember/test-helpers": "~2.9.4",
"@ember/test-waiters": "^3.1.0",
"@embroider/test-setup": "^3.0.0",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"@html-next/flexi-default-styles": "^3.0.0-alpha.1",
"@release-it-plugins/lerna-changelog": "^6.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"broccoli-asset-rev": "^3.0.0",
"ember-cli": "~4.12.1",
"ember-cli-dependency-checker": "~3.3.2",
"ember-cli-github-pages": "^0.2.2",
"ember-cli-inject-live-reload": "~2.1.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-terser": "^4.0.2",
"ember-load-initializers": "^2.1.2",
"ember-qunit": "^6.2.0",
"ember-resolver": "~11.0.1",
"ember-source": "~4.12.3",
"ember-source-channel-url": "^3.0.0",
"ember-svg-jar": "^2.6.0",
"ember-truth-helpers": "^4.0.3",
"ember-try": "~3.0.0",
"eslint": "~8.57.0",
"eslint-plugin-decorator-position": "^5.0.2",
"eslint-plugin-ember": "~11.11.1",
"eslint-plugin-n": "^16.6.0",
"flexi": "^3.0.0-alpha.1",
"loader.js": "^4.7.0",
"qunit": "~2.20.1",
"qunit-dom": "~3.0.0",
"release-it": "~15.11.0",
"webpack": "~5.96.1"
},
"engines": {
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://tylerturdenpants.github.io/ember-attacher/"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
}
}