-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
48
49
50
51
52
53
{
"name": "dir-compare-cli",
"version": "1.0.1",
"description": "Node JS directory compare CLI",
"repository": {
"type": "git",
"url": "https://github.com/gliviu/dir-compare-cli"
},
"keywords": [
"compare",
"directory",
"folder",
"cli"
],
"bin": {
"dircompare": "src/cli/dircompare.js"
},
"files": [
"src"
],
"scripts": {
"clean": "rm -rf build && rm -rf .nyc_output && rm -rf coverage",
"copydeps": "copyfiles \"test/expected/**\" test/testdir.tar \"test/extended/res/**\" package.json build",
"build": "tsc && npm run copydeps",
"lint": "tslint -p tsconfig.json",
"pretest": "npm install && npm run build",
"test": "node build/test/runTests.js",
"extest": "npm run pretest && ./test/extended/init.sh && test/extended/runall.sh",
"coverage": "npx nyc --exclude \"build/test/**\" --reporter=lcov npm test && npx nyc report"
},
"dependencies": {
"colors": "1.0.3",
"commander": "2.9.0",
"dir-compare": "2.4.0"
},
"devDependencies": {
"@types/node": "^12.11.7",
"copyfiles": "^1.2.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",
"typescript": "^3.7.4"
},
"author": "Liviu Grigorescu",
"license": "MIT",
"bugs": {
"url": "https://github.com/gliviu/dir-compare-cli/issues"
}
}