-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 957 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 957 Bytes
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
{
"name": "rsync-parser",
"version": "2.0.1",
"description": "Parses rsync output generated with the `--itemize-changes` option. This allows you to programmatically identify files that got created, updated and deleted.",
"keywords": [
"rsync",
"parser",
"parse",
"--itemize-changes"
],
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"port": "node port.js && npm test",
"test": "mocha src dist"
},
"repository": {
"type": "git",
"url": "https://github.com/daniel-araujo/node-rsync-parser.git"
},
"author": {
"name": "Daniel Araujo",
"email": "contact@daniel-araujo.pt"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.7",
"gfm-code-blocks": "^1.0.0",
"mocha": "^7.2.0",
"replace-string": "^3.1.0",
"sinon": "^9.2.1",
"typescript": "^3.9.7"
},
"dependencies": {}
}