forked from ember-engines/ember-engines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.14 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "swf-ember-engines",
"version": "0.0.1",
"description": "Forked - Composable applications for ambitious user experiences",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build --environment=production",
"changelog": "lerna-changelog",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint ./*.js addon addon-test-support app config lib tests",
"start": "ember serve",
"test": "npm-run-all lint:* test:*",
"test:ember": "ember test",
"test:ember-compatibility": "ember try:each",
"test:emberall": "ember try:each --skip-cleanup",
"test:lint": "eslint index.js addon addon-test-support app bin config lib node-tests tests",
"test:lint:fix": "eslint --fix index.js addon addon-test-support app bin config lib node-tests tests",
"test:node": "mocha 'node-tests/**/*-test.js' --reporter tap",
"test:node:debug": "mocha --inspect-brk 'node-tests/**/*-test.js' --reporter tap",
"test:windows": "ember try:one %EMBER_TRY_SCENARIO% test --skip-cleanup",
"test:node:dev": "BUILD_DEV=true testem -f testem-node.js",
"test:null": "echo 'no appropriate changes detected, not running tests'",
"try": "ember try:one"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-engines/ember-engines.git"
},
"authors": [
"Dan Gebhardt",
"Robert Jackson",
"Michael Villander"
],
"license": "MIT",
"devDependencies": {
"@ember/optional-features": "^1.3.0",
"@ember/test-helpers": "^2.5.0",
"@glimmer/component": "^1.0.0",
"@glimmer/tracking": "^1.0.0",
"babel-eslint": "^10.1.0",
"broccoli-asset-rev": "^3.0.0",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.2.0",
"common-tags": "^1.8.0",
"ember-auto-import": "^2.2.0",
"ember-cli": "~3.17.0",
"ember-cli-addon-tests": "^0.11.1",
"ember-cli-app-version": "^3.2.0",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-htmlbars": "^5.3.2",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-cli-sri": "^2.1.1",
"ember-cli-uglify": "^3.0.0",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.1",
"ember-load-initializers": "^2.1.1",
"ember-maybe-import-regenerator-for-testing": "^1.0.0",
"ember-qunit": "^5.1.5",
"ember-resolver": "^7.0.0",
"ember-sinon": "^4.0.0",
"ember-source": "~3.24.1",
"ember-source-channel-url": "^2.0.1",
"ember-template-lint": "^2.4.0",
"ember-try": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-ember": "^7.10.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"execa": "^1.0.0",
"fixturify": "^1.2.0",
"fs-extra": "^8.0.1",
"loader.js": "^4.7.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"qunit": "^2.17.2",
"rewire": "^4.0.1",
"walk-sync": "^1.1.3",
"webpack": "^5.76.0"
},
"keywords": [
"ember-addon"
],
"dependencies": {
"@embroider/macros": "^1.3.0",
"amd-name-resolver": "1.3.1",
"babel-plugin-compact-reexports": "^1.1.0",
"broccoli-babel-transpiler": "^7.2.0",
"broccoli-concat": "^4.2.5",
"broccoli-debug": "^0.6.5",
"broccoli-dependency-funnel": "^2.1.2",
"broccoli-file-creator": "^2.1.1",
"broccoli-funnel": "^3.0.8",
"broccoli-merge-trees": "^4.2.0",
"calculate-cache-key-for-tree": "^2.0.0",
"ember-asset-loader": "^1.0.0",
"ember-cli-babel": "^7.18.0",
"ember-cli-preprocess-registry": "^3.3.0",
"ember-cli-string-utils": "^1.1.0",
"ember-cli-version-checker": "^5.1.2",
"lodash": "^4.17.11"
},
"peerDependencies": {
"ember-source": "^3.24.1 || 4 || 5",
"@ember/legacy-built-in-components": "*"
},
"peerDependenciesMeta": {
"@ember/legacy-built-in-components": {
"optional": true
}
},
"engines": {
"node": "14.* || 16.* || >= 18"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"prettier": {
"singleQuote": true
}
}