-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 KB
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
{
"name": "jsobjectdiff",
"version": "2.1.1",
"description": "Ensure that two JavaScript files containing objects have the same keys and display differences",
"main": "compare.js",
"scripts": {
"test": "mocha tests/*.test.js",
"ci": "check-build && npm run test"
},
"bin": {
"jsobjectdiff": "./bin/jsobjectdiff"
},
"keywords": [
"filediff",
"diff",
"file",
"fs",
"tool",
"object"
],
"author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (http://fgribreau.com/)",
"contributors": [
{
"name": "Nicolas Bruel",
"email": "bruel.nicolas85@gmail.com"
},
{
"name": "Laura Felix",
"email": "laura.felix.loratus@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"cli-table": "^0.3.1",
"lodash": "^3.5.0",
"nomnom": "^1.8.1",
"object-path": "^0.9.0",
"optimist": "^0.6.1",
"when": "^3.7.2",
"winston": "1.*.*"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.0.1",
"check-build": "*"
}
}