UNPKG

2.11 kBJSONView Raw
1{
2 "name": "dir-compare",
3 "version": "3.3.0",
4 "description": "Node JS directory compare",
5 "main": "build/src/index.js",
6 "types": "build/src/index.d.ts",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/gliviu/dir-compare"
10 },
11 "keywords": [
12 "compare",
13 "directory",
14 "folder"
15 ],
16 "files": [
17 "build/src"
18 ],
19 "scripts": {
20 "prepublishOnly": "npm run clean && npm run build && npm run lint",
21 "clean": "rm -rf build && rm -rf .nyc_output && rm -rf coverage",
22 "copydeps": "copyfiles \"test/expected/**\" test/testdir.tar \"test/extended/res/**\" build",
23 "build": "tsc && npm run copydeps",
24 "lint": "eslint ./src ./test --ext .ts,.js",
25 "watch": "tsc-watch --onSuccess 'npm run copydeps --silent'",
26 "pretest": "npm install && npm run build",
27 "test": "node build/test/runTests.js",
28 "extest": "npm run pretest && ./test/extended/init.sh && test/extended/runall.sh",
29 "coverage": "npx nyc --exclude \"build/test/**\" --reporter=lcov npm test && npx nyc report",
30 "toc": "npx markdown-toc README.md; echo \n",
31 "docs": "typedoc --includeVersion --excludeExternals --theme minimal --readme none --gitRevision master --toc compare,compareSync,fileCompareHandlers,Options,Result --out docs ./src/index.ts"
32 },
33 "dependencies": {
34 "buffer-equal": "^1.0.0",
35 "minimatch": "^3.0.4"
36 },
37 "devDependencies": {
38 "@types/node": "^12.11.7",
39 "@typescript-eslint/eslint-plugin": "^4.14.0",
40 "@typescript-eslint/parser": "^4.14.0",
41 "colors": "^1.4.0",
42 "copyfiles": "^1.2.0",
43 "eslint": "^7.18.0",
44 "memory-streams": "0.1.0",
45 "semver": "5.6.0",
46 "tar-fs": "2.1.1",
47 "temp": "0.9.0",
48 "ts-node": "9.1.1",
49 "tsc-watch": "^4.2.9",
50 "typedoc": "0.20.16",
51 "typescript": "^4.1.3"
52 },
53 "author": "Liviu Grigorescu",
54 "license": "MIT",
55 "bugs": {
56 "url": "https://github.com/gliviu/dir-compare/issues"
57 }
58}