forked from ciena-blueplanet/ember-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.96 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
{
"name": "ember-test-utils",
"version": "5.1.1",
"description": "Utilities to assist with testing ember apps/addons",
"directories": {
"doc": "doc",
"test": "tests"
},
"bin": {
"lint-all-the-things": "./cli/lint-all-the-things.js",
"lint-docker": "./cli/lint-docker.js",
"lint-htmlbars": "./cli/lint-htmlbars.js",
"lint-javascript": "./cli/lint-javascript.js",
"lint-markdown": "./cli/lint-markdown.js",
"lint-sass": "./cli/lint-sass.js",
"template-lint": "./cli/lint-htmlbars.js"
},
"scripts": {
"build": "ember build",
"lint": "./cli/lint-all-the-things.js",
"start": "ember server",
"test": "npm run lint && npm run test-addon && npm run test-cli",
"test-addon": "EMBER_TRY_SCENARIO=${EMBER_TRY_SCENARIO:=default} && ember try:one $EMBER_TRY_SCENARIO --- COVERAGE=true ember test",
"test-cli": "istanbul cover --dir coverage _mocha -- --recursive tests/cli/"
},
"repository": "[email protected]:ciena-blueplanet/ember-test-utils.git",
"engines": {
"node": ">= 6.9.1"
},
"author": "Sophy Pal (https://github.com/sophypal)",
"contributors": [
"Adam Meadows (https://github.com/job13er)",
"Matt Dahl (https://github.com/sandersky)",
"Michael Carroll (https://github.com/juwara0)",
"Jeremy Brown (https://github.com/notmessenger)"
],
"license": "MIT",
"devDependencies": {
"broccoli-asset-rev": "^2.5.0",
"chai-jquery": "^2.0.0",
"ember-cli": "~2.11.0",
"ember-cli-app-version": "^2.0.1",
"ember-cli-chai": "0.3.2",
"ember-cli-code-coverage": "^0.3.12",
"ember-cli-dependency-checker": "^1.3.0",
"ember-cli-htmlbars": "^1.1.1",
"ember-cli-htmlbars-inline-precompile": "^0.3.6",
"ember-cli-inject-live-reload": "^1.6.1",
"ember-cli-mocha": "0.13.2",
"ember-cli-release": "^1.0.0-beta.2",
"ember-cli-shims": "^1.0.2",
"ember-cli-test-loader": "^1.1.1",
"ember-cli-uglify": "^1.2.0",
"ember-computed-decorators": "0.3.0",
"ember-data": "^2.11.0",
"ember-disable-prototype-extensions": "^1.1.0",
"ember-disable-proxy-controllers": "^1.0.1",
"ember-export-application-global": "^1.1.1",
"ember-inflector": "^1.11.0",
"ember-load-initializers": "^0.6.3",
"ember-lodash-shim": "^2.0.0",
"ember-resolver": "^2.1.1",
"ember-sinon": "0.6.0",
"ember-source": "~2.11.2",
"istanbul": "^0.4.5",
"loader.js": "^4.1.0",
"lodash-es": "^4.17.4",
"sinon-chai": "^2.8.0"
},
"keywords": [
"ember-addon"
],
"dependencies": {
"chalk": "^1.1.3",
"dockerfile_lint": "^0.2.6",
"ember-cli-babel": "^5.1.5",
"ember-template-lint": "^0.6.3",
"eslint": "^3.14.0",
"eslint-config-frost-standard": "^6.0.1",
"glob-all": "^3.1.0",
"node-yaml": "^3.0.3",
"remark": "^6.2.0",
"remark-lint": "^5.4.0",
"sass-lint": "^1.10.2"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"ember-test-utils": {
"excludeFromEnvironments": [
"production"
]
}
}