-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
37 lines (37 loc) · 1009 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
{
"author": "Andrey Tarantsov <[email protected]>",
"contributors": [
"Gavriel Fleischer <[email protected]>",
"Eric Woudenberg <[email protected]>"
],
"name": "json-diff",
"description": "JSON diff",
"version": "1.0.6",
"homepage": "https://github.com/andreyvit/json-diff",
"license": "MIT",
"repository": {
"url": "[email protected]:andreyvit/json-diff.git"
},
"main": "lib/index.js",
"bin": "bin/json-diff.js",
"scripts": {
"fix": "eslint --fix lib",
"test": "coffee -c test; mocha test/*.js",
"cov": "rm -rf lib-cov; jscoverage lib lib-cov; env JSLIB=lib-cov mocha -R dot && env JSLIB=lib-cov mocha -R html-cov >coverage.html; open coverage.html"
},
"dependencies": {
"@ewoudenberg/difflib": "0.1.0",
"colors": "^1.4.0",
"dreamopt": "~0.8.0"
},
"devDependencies": {
"coffeescript": "^2.6.1",
"eslint": "^8",
"eslint-config-standard": "^17",
"jscoverage": "^0.6.0",
"mocha": "9.1.3"
},
"engines": {
"node": "*"
}
}