forked from ember-cli/ember-exam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.51 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
{
"name": "ember-exam",
"version": "4.0.9",
"description": "Run your tests with randomization, splitting, and parallelization for beautiful tests.",
"keywords": [
"ember-addon"
],
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/ember-exam.git"
},
"scripts": {
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"build": "ember build",
"test": "ember test",
"test:all": "ember try:each && yarn test:node",
"test:node": "nyc mocha 'node-tests/**/*-test.js'",
"coverage": "nyc report --reporter=text-lcov | codeclimate-test-reporter"
},
"dependencies": {
"chalk": "^3.0.0",
"cli-table3": "^0.5.1",
"debug": "^4.1.0",
"ember-cli-babel": "^7.17.1",
"execa": "^3.4.0",
"fs-extra": "^8.0.1",
"js-yaml": "^3.13.1",
"npmlog": "^4.1.2",
"rimraf": "^3.0.2",
"semver": "^7.1.2",
"silent-error": "^1.1.1"
},
"devDependencies": {
"@ember/optional-features": "^1.1.0",
"codeclimate-test-reporter": "^0.5.0",
"ember-cli": "^3.15.2",
"ember-cli-addon-docs": "^0.6.15",
"ember-cli-addon-docs-yuidoc": "^0.2.4",
"ember-cli-dependency-checker": "^3.0.0",
"ember-cli-deploy": "^1.0.2",
"ember-cli-deploy-build": "^2.0.0",
"ember-cli-deploy-git": "^1.3.4",
"ember-cli-deploy-git-ci": "^1.0.1",
"ember-cli-htmlbars": "^4.2.2",
"ember-cli-htmlbars-inline-precompile": "^3.0.1",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-cli-shims": "^1.1.0",
"ember-disable-prototype-extensions": "^1.1.2",
"ember-export-application-global": "^2.0.1",
"ember-load-initializers": "^2.1.1",
"ember-qunit": "^4.6.0",
"ember-resolver": "^6.0.1",
"ember-source": "~3.14.3",
"ember-source-channel-url": "^1.1.0",
"ember-template-lint": "^1.13.2",
"ember-try": "^1.4.0",
"eslint-plugin-ember": "^7.7.2",
"eslint-plugin-node": "^11.0.0",
"fixturify": "^1.2.0",
"istanbul": "^0.4.3",
"loader.js": "^4.7.0",
"mocha": "^7.0.1",
"mocha-eslint": "^4.1.0",
"nyc": "^15.0.0",
"rsvp": "^4.8.5",
"sinon": "^7.4.2",
"testdouble": "^3.12.2"
},
"engines": {
"node": ">= 10.*"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"nyc": {
"exclude": [
"bower_components",
"config",
"node-tests",
"tests"
]
},
"homepage": "https://ember-cli.github.io/ember-exam"
}