forked from mainmatter/qunit-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2 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
{
"name": "qunit-dom",
"version": "0.6.0",
"description": "High Level DOM Assertions for QUnit",
"keywords": [
"browser",
"dom",
"ember-addon",
"html",
"qunit",
"testing"
],
"license": "MIT",
"author": "simplabs GmbH",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/simplabs/qunit-dom",
"scripts": {
"build": "rollup -c",
"changelog": "lerna-changelog",
"docs": "documentation readme lib/qunit-dom.js --readme-file=API.md --section=Assertions",
"prepublish": "rollup -c",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ember": "ember test",
"test:watch": "jest --watchAll --notify"
},
"dependencies": {
"broccoli-funnel": "^2.0.0",
"broccoli-merge-trees": "^2.0.0"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.0",
"documentation": "^5.3.2",
"ember-cli": "~2.15.0-beta.2",
"ember-cli-babel": "^6.6.0",
"ember-cli-dependency-checker": "^2.0.0",
"ember-cli-eslint": "^4.0.0",
"ember-cli-htmlbars": "^2.0.1",
"ember-cli-htmlbars-inline-precompile": "^1.0.0",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-qunit": "^4.0.0",
"ember-cli-shims": "^1.1.0",
"ember-load-initializers": "^1.0.0",
"ember-resolver": "^4.0.0",
"ember-source": "~2.15.0-beta.2",
"jest": "^21.2.1",
"lerna-changelog": "^0.6.0",
"loader.js": "^4.2.3",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"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"
}
}
}