This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
forked from percy/percy-ember
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.24 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
{
"name": "@percy/ember",
"version": "3.0.0",
"description": "Ember client library for visual testing with Percy",
"keywords": [
"ember-addon",
"percy",
"visual testing"
],
"repository": "https://github.com/percy/ember-percy",
"license": "MIT",
"author": "Perceptual Inc.",
"types": "types/index.d.ts",
"directories": {
"doc": "doc",
"test": "tests"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"build": "ember build --environment=production",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "node node_modules/@percy/sdk-utils/test/server exec -- ember test",
"test:all": "ember try:each",
"test:types": "tsd"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"dependencies": {
"@percy/sdk-utils": "^1.0.0-beta.46",
"ember-cli-babel": "^7.26.3"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@ember/optional-features": "^2.0.0",
"@ember/test-helpers": "^2.2.5",
"@glimmer/component": "^1.0.4",
"@glimmer/tracking": "^1.0.4",
"@percy/core": "^1.0.0-beta.46",
"@types/mocha": "^9.0.0",
"@types/qunit": "^2.11.1",
"babel-eslint": "^10.1.0",
"broccoli-asset-rev": "^3.0.0",
"ember-auto-import": "^2.0.2",
"ember-cli": "~4.2.0",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-htmlbars": "^6.0.0",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-cli-sri": "^2.1.1",
"ember-cli-terser": "^4.0.1",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.1",
"ember-load-initializers": "^2.1.2",
"ember-maybe-import-regenerator": "^1.0.0",
"ember-qunit": "^5.1.4",
"ember-resolver": "^8.0.2",
"ember-source": "~4.3.0",
"ember-source-channel-url": "^3.0.0",
"ember-template-lint": "^4.0.0",
"ember-try": "^2.0.0",
"eslint": "^7.23.0",
"eslint-plugin-ember": "^10.3.0",
"eslint-plugin-node": "^11.1.0",
"loader.js": "^4.7.0",
"npm-run-all": "^4.1.5",
"qunit": "^2.14.1",
"qunit-dom": "^2.0.0",
"tsd": "^0.20.0",
"webpack": "5"
}
}