forked from peteward44/node-svn-ultimate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "@recih/node-svn-ultimate",
"description": "The ultimate SVN wrapper for node. Contains all the basic methods checkout, update, info, etc, and includes svnmucc support.",
"version": "1.3.0",
"homepage": "https://github.com/recih/node-svn-ultimate",
"repository": {
"type": "git",
"url": "https://github.com/recih/node-svn-ultimate.git"
},
"author": "Pete Ward <[email protected]>",
"main": "./index.js",
"keywords": [
"svn"
],
"ignore": [
"test",
".travis.yml",
".gitignore"
],
"dependencies": {
"fs-extra": "^1.0.0",
"semver": "^5.3.0",
"uuid": "^3.0.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"mocha": "^5.2.0",
"should": "^11.1.1"
},
"engines": {
"node": ">= 0.10.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/recih/node-svn-ultimate/blob/master/LICENSE"
}
],
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/recih/node-svn-ultimate/issues"
},
"scripts": {
"test": "mocha",
"docs": "jsdoc2md ./index.js > api.md"
}
}