-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "html-differ",
"version": "1.4.0",
"description": "Compares two HTML",
"keywords": [
"html-differ",
"html-diff",
"htmldiffer",
"htmldiff",
"html",
"differ",
"diff"
],
"homepage": "https://github.com/bem/html-differ",
"bugs": "https://github.com/bem/html-differ/issues",
"author": {
"name": "Evgeniy Gavryushin",
"email": "[email protected]",
"url": "https://github.com/eGavr"
},
"main": "./lib/index.js",
"bin": {
"html-differ": "./bin/html-differ"
},
"repository": {
"type": "git",
"url": "git://github.com/bem/html-differ.git"
},
"dependencies": {
"chalk": "1.0.0",
"coa": "0.4.0",
"diff": "1.0.8",
"lodash": "^4.0.0",
"parse5": "1.1.3",
"vow": "0.4.13",
"vow-fs": "0.3.6"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jscs-jsdoc": "^2.0.0",
"jshint": "^2.9.7",
"mocha": "^5.2.0",
"must": "0.11.0"
},
"scripts": {
"test": "npm run lint && npm run unit-test && npm run func-test && npm run logger-test && npm run cover",
"lint": "jshint . && jscs -c .jscs.js .",
"unit-test": "mocha test/unit",
"func-test": "mocha test/differ",
"logger-test": "mocha test/logger",
"cover": "istanbul cover _mocha -- test/unit test/differ test/logger"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT"
}
]
}