-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
34 lines (34 loc) · 910 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
{
"name": "dom-compare",
"description": "Library to compare two DOM trees",
"version": "0.6.0",
"author": "Oleg Elifantiev <[email protected]>",
"contributors": [],
"keywords": [
"dom",
"comparison"
],
"bin": {
"domcompare": "bin/domcompare"
},
"dependencies": {
"argparse": "^1.0.10",
"colors": "0.6.2",
"xmldom": "0.1.19"
},
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-istanbul": "0.2.0"
},
"scripts": {
"instrument": "istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib",
"test-cov": "npm run-script instrument && COVER=1 ISTANBUL_REPORTERS=lcovonly mocha -R mocha-istanbul",
"test": "mocha -R spec"
},
"repository": "[email protected]:Olegas/dom-compare.git",
"engines": {
"node": "*"
}
}