-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.14 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
{
"name": "chai-xml",
"description": "Xml assertions for Chai",
"version": "0.4.1",
"homepage": "https://github.com/krampstudio/chai-xml",
"author": {
"name": "Bertrand Chevrier",
"email": "[email protected]",
"url": "http://krampstudio.com"
},
"repository": {
"type": "git",
"url": "git://github.com/krampstudio/chai-xml.git"
},
"bugs": {
"url": "https://github.com/krampstudio/chai-xml/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/krampstudio/chai-xml/blob/master/LICENSE"
}
],
"main": "src/chai-xml",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test",
"lint": "grunt lint"
},
"keywords": [
"chai-plugin",
"chai",
"xml",
"test",
"assert",
"assertion",
"assertXml"
],
"dependencies": {
"xml2js": "^0.5.0"
},
"peerDependencies": {
"chai": ">=1.10.0 "
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^7.32.0",
"grunt": "^1.6.1",
"grunt-eslint": "^23.0.0",
"grunt-mocha-test": "^0.13.3",
"load-grunt-tasks": "^5.1.0",
"mocha": "^8.4.0"
}
}