-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.05 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.05 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
113
114
115
116
117
118
{
"name": "ember-exam",
"version": "10.1.0",
"description": "Run your tests with randomization, splitting, and parallelization for beautiful tests.",
"keywords": [
"ember-addon"
],
"homepage": "https://ember-cli.github.io/ember-exam",
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/ember-exam.git"
},
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build --environment=production",
"coverage": "nyc report --reporter=text-lcov | codeclimate-test-reporter",
"format": "prettier . --write",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:format": "prettier . --cache --check",
"lint:js": "eslint . && pnpm --filter './test-apps/**' lint:js",
"start": "ember serve",
"test": "concurrently \"npm:test:*\"",
"test:ember": "ember test",
"test:ember-compatibility": "ember try:each",
"test:node": "nyc mocha 'node-tests/**/*-test.js'"
},
"nyc": {
"exclude": [
"config",
"node-tests",
"tests"
]
},
"dependencies": {
"@babel/core": "^7.28.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.0",
"debug": "^4.2.0",
"ember-auto-import": "^2.7.0",
"ember-cli-babel": "^8.2.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"js-yaml": "^4.0.0",
"npmlog": "^7.0.0",
"rimraf": "^5.0.0",
"semver": "^7.3.2",
"silent-error": "^1.1.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.28.6",
"@ember/optional-features": "2.3.0",
"@ember/string": "3.1.1",
"@ember/test-helpers": "3.3.1",
"@embroider/test-setup": "3.0.3",
"auto-dist-tag": "2.1.1",
"codeclimate-test-reporter": "0.5.1",
"concurrently": "9.2.1",
"ember-cli": "5.12.0",
"ember-cli-dependency-checker": "3.3.3",
"ember-cli-htmlbars": "6.3.0",
"ember-cli-inject-live-reload": "2.1.0",
"ember-concurrency": "4.0.6",
"ember-eslint": "0.6.1",
"ember-load-initializers": "2.1.2",
"ember-qunit": "9.0.4",
"ember-resolver": "11.0.1",
"ember-source": "6.10.1",
"ember-source-channel-url": "3.0.0",
"ember-try": "3.0.0",
"eslint": "9.39.4",
"fixturify": "3.0.0",
"glob": "11.1.0",
"globals": "16.5.0",
"loader.js": "4.7.0",
"mocha": "11.7.5",
"nyc": "17.1.0",
"prettier": "3.8.1",
"prettier-plugin-ember-template-tag": "2.1.3",
"qunit": "2.25.0",
"release-plan": "^0.17.4",
"rsvp": "4.8.5",
"sinon": "21.0.3",
"typescript": "5.9.3",
"webpack": "5.104.1"
},
"peerDependencies": {
"ember-qunit": "*",
"ember-source": ">= 4.0.0",
"qunit": "*"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18"
},
"volta": {
"node": "18.20.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"overrides": {
"@glimmer/syntax": "^0.95.0",
"ember-exam": "workspace:*"
}
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}