forked from andreyvit/json-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 878 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
{
"author": "Andrey Tarantsov <andreyvit@me.com>",
"contributors": [
"Gavriel Fleischer <flocsy@gmail.com>"
],
"name": "json-diff",
"description": "JSON diff",
"version": "0.5.3",
"homepage": "https://github.com/andreyvit/json-diff",
"repository": {
"url": "git@github.com:andreyvit/json-diff.git"
},
"main": "lib/index.js",
"bin": "bin/json-diff.js",
"scripts": {
"prepare": "coffee -c lib",
"test": "mocha test/*.coffee",
"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": {
"cli-color": "~0.1.6",
"difflib": "~0.2.1",
"dreamopt": "~0.6.0"
},
"devDependencies": {
"coffee-script": "^1.12.7",
"mocha": "~1.7.0"
},
"optionalDependencies": {},
"engines": {
"node": "*"
}
}