forked from mainmatter/qunit-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.47 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
{
"name": "qunit-dom",
"version": "0.9.0",
"description": "High Level DOM Assertions for QUnit",
"keywords": [
"browser",
"dom",
"ember-addon",
"html",
"qunit",
"testing"
],
"license": "MIT",
"author": "simplabs GmbH",
"types": "dist/qunit-dom.d.ts",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/simplabs/qunit-dom",
"scripts": {
"build": "rollup -c",
"changelog": "lerna-changelog",
"docs": "yarn build && documentation build dist/qunit-dom.js --config documentation.yml -f md -o API.md",
"lint": "eslint . --ext=js,ts --cache",
"prepublish": "rollup -c",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ember": "ember test",
"test:watch": "jest --watchAll --notify"
},
"dependencies": {
"broccoli-funnel": "^2.0.2",
"broccoli-merge-trees": "^3.0.1"
},
"devDependencies": {
"@ember/optional-features": "^1.0.0",
"@types/jest": "^24.0.18",
"@types/qunit": "^2.9.0",
"@typescript-eslint/parser": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.0",
"documentation": "^12.1.2",
"ember-cli": "~3.12.0",
"ember-cli-babel": "^7.11.1",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-htmlbars": "^3.1.0",
"ember-cli-htmlbars-inline-precompile": "^3.0.0",
"ember-cli-inject-live-reload": "^2.0.1",
"ember-load-initializers": "^2.1.0",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-qunit": "^4.5.1",
"ember-resolver": "^5.3.0",
"ember-source": "~3.13.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"lerna-changelog": "^0.8.0",
"loader.js": "^4.2.3",
"prettier": "1.18.2",
"rollup": "^1.21.4",
"rollup-plugin-typescript2": "^0.24.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"engines": {
"node": "8.* || >= 10.*"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"after": [
"ember-cli-qunit",
"ember-qunit"
]
},
"changelog": {
"repo": "simplabs/qunit-dom",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"jest": {
"preset": "ts-jest"
}
}