package.json
2.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"_from": "dir-compare@^2.4.0",
"_id": "dir-compare@2.4.0",
"_inBundle": false,
"_integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==",
"_location": "/dir-compare",
"_phantomChildren": {
"graceful-readlink": "1.0.1"
},
"_requested": {
"type": "range",
"registry": true,
"raw": "dir-compare@^2.4.0",
"name": "dir-compare",
"escapedName": "dir-compare",
"rawSpec": "^2.4.0",
"saveSpec": null,
"fetchSpec": "^2.4.0"
},
"_requiredBy": [
"/@electron/universal"
],
"_resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz",
"_shasum": "785c41dc5f645b34343a4eafc50b79bac7f11631",
"_spec": "dir-compare@^2.4.0",
"_where": "C:\\Users\\rkdud\\Desktop\\Capstone_design1_JJS1\\JJS_project1\\mobile forensic tool\\forensic_tool\\node_modules\\@electron\\universal",
"author": {
"name": "Liviu Grigorescu"
},
"bin": {
"dircompare": "src/cli/dircompare.js"
},
"bugs": {
"url": "https://github.com/gliviu/dir-compare/issues"
},
"bundleDependencies": false,
"dependencies": {
"buffer-equal": "1.0.0",
"colors": "1.0.3",
"commander": "2.9.0",
"minimatch": "3.0.4"
},
"deprecated": false,
"description": "Node JS directory compare",
"devDependencies": {
"@types/node": "^12.11.7",
"copyfiles": "^1.2.0",
"memory-streams": "0.1.0",
"semver": "5.6.0",
"shelljs": "0.3.0",
"tar-fs": "2.1.1",
"temp": "0.9.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.13.0",
"typedoc": "0.19.2",
"typescript": "^3.7.4"
},
"files": [
"src"
],
"homepage": "https://github.com/gliviu/dir-compare#readme",
"keywords": [
"compare",
"directory",
"folder"
],
"license": "MIT",
"main": "src/index.js",
"name": "dir-compare",
"repository": {
"type": "git",
"url": "git+https://github.com/gliviu/dir-compare.git"
},
"scripts": {
"build": "tsc && npm run copydeps",
"clean": "rm -rf build && rm -rf .nyc_output && rm -rf coverage",
"copydeps": "copyfiles \"test/expected/**\" test/testdir.tar \"test/extended/res/**\" package.json build",
"coverage": "npx nyc --exclude \"build/test/**\" --reporter=lcov npm test && npx nyc report",
"docs": "typedoc --includeVersion --includeDeclarations --excludeExternals --theme minimal --mode file --readme none --gitRevision master --toc compare,compareSync,fileCompareHandlers,Options,Result --out docs ./src/index.d.ts",
"extest": "npm run pretest && ./test/extended/init.sh && test/extended/runall.sh",
"lint": "tslint -p tsconfig.json",
"pretest": "npm install && npm run build",
"test": "node build/test/runTests.js",
"toc": "npx markdown-toc README.md; echo \n"
},
"types": "src/index.d.ts",
"version": "2.4.0"
}