-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
44 lines (44 loc) · 919 Bytes
/
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
{
"author": "Nathan Black <nathan@nathanblack.org>",
"name": "chai-dom",
"description": "DOM assertions for the Chai assertion library using vanilla JavaScript",
"keywords": [
"test",
"assertion",
"assert",
"testing",
"chai-plugin",
"browser",
"vendor",
"dom",
"no-jquery"
],
"version": "1.12.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nathanboktae/chai-dom"
},
"bugs": {
"url": "https://github.com/nathanboktae/chai-dom/issues"
},
"scripts": {
"test": "npm run lint && npm run test:unit",
"test:unit": "testem ci",
"lint": "eslint ."
},
"main": "./chai-dom",
"engines": {
"node": ">= 0.12.0"
},
"devDependencies": {
"chai": ">= 3",
"dom4": "^1.4.6",
"eslint": "^7.20.0",
"mocha": "^8.0.0",
"testem": "^3.2.0"
},
"peerDependencies": {
"chai": ">= 3"
}
}