forked from mainmatter/qunit-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 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
93
94
95
{
"name": "qunit-dom",
"version": "1.4.0",
"description": "High Level DOM Assertions for QUnit",
"keywords": [
"browser",
"dom",
"ember-addon",
"html",
"qunit",
"qunit-plugin",
"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": "^3.0.3",
"broccoli-merge-trees": "^4.2.0"
},
"devDependencies": {
"@ember/optional-features": "^1.3.0",
"@types/jest": "^26.0.9",
"@types/qunit": "^2.9.1",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.0",
"documentation": "^13.0.2",
"ember-cli": "~3.20.0",
"ember-cli-babel": "^7.22.1",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-htmlbars": "^5.2.0",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-load-initializers": "^2.1.1",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-qunit": "^4.6.0",
"ember-resolver": "^8.0.0",
"ember-source": "~3.20.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.5.4",
"lerna-changelog": "^1.0.1",
"loader.js": "^4.2.3",
"prettier": "2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^25.5.1",
"typescript": "~3.9.7"
},
"engines": {
"node": "10.* || >= 12.*"
},
"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",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}