forked from strugee/node-git-clone-or-pull
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 970 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 970 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
41
{
"name": "git-clone-or-pull",
"version": "2.2.0",
"description": "Ensure a git repo exists on disk and that it's up-to-date",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha test/*.js",
"lint": "jshint index.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strugee/node-git-clone-or-pull.git"
},
"keywords": [
"git",
"clone",
"pull"
],
"author": "Alex Jordan <alex@strugee.net>",
"license": "LGPL-3.0+",
"bugs": {
"url": "https://github.com/strugee/node-git-clone-or-pull/issues"
},
"homepage": "https://github.com/strugee/node-git-clone-or-pull#readme",
"dependencies": {
"jshint": "^2.9.4",
"smart-spawn": "^2.0.0"
},
"optionalDependencies": {
"nodegit": "^0.16.0"
},
"devDependencies": {
"chai": "^3.5.0",
"lodash.assign": "^4.2.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.1"
},
"engine": {
"node": ">=0.12"
}
}