-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 891 Bytes
/
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
{
"name": "@haroun/sync-status-cli",
"version": "1.1.0",
"description": "Make a diff between two directories and list all missing files",
"main": "cli.js",
"dependencies": {},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-xo": "^0.33.1",
"faucet": "0.0.1",
"tape": "^5.0.1"
},
"scripts": {
"debug": "node --inspect --inspect-brk cli.js",
"test": "tape '**/*.test.js' | faucet",
"postversion": "git push && git push --tags",
"pretest": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/haroun/sync-status-cli.git"
},
"keywords": [
"cli-app",
"cli",
"sync",
"diff",
"backup"
],
"author": "Harouna Traore",
"license": "MIT",
"bugs": {
"url": "https://github.com/haroun/sync-status-cli/issues"
},
"homepage": "https://github.com/haroun/sync-status-cli#readme"
}