-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "ods-diff",
"description": "Highlight the diff between two LibreOffice spreadsheet",
"version": "1.1.3",
"homepage": "https://github.com/sirap-group/node-ods-diff",
"author": "Rémi Becheras (https://github.com/rbecheras)",
"repository": "sirap-group/ods-diff",
"bugs": {
"url": "https://github.com/sirap-group/node-ods-diff/issues"
},
"private": false,
"license": "MIT",
"files": [
"index.js",
"bin",
"LICENSE"
],
"main": "index.js",
"engines": {
"node": ">=6"
},
"bin": {
"odsdiff": "./bin/cli.js"
},
"scripts": {
"demo-cli": "node bin/cli.js --verbose --f1 ./test/fixtures/simple/sheet-origin.ods --f2 ./test/fixtures/simple/sheet-modified.ods",
"demo": "npm run demo-cli",
"test": "bash test/cli.sh",
"test-cli": "npm test"
},
"keywords": [
"diff",
"ods"
],
"dependencies": {
"archiver": "^1.3.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"copy": "^0.3.0",
"copy-dir": "^0.3.0",
"delete": "^0.3.2",
"diff": "^3.2.0",
"unzip2": "^0.2.5",
"write": "^0.3.2",
"xml2js": "^0.4.17"
}
}