-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1010 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
37
38
39
40
41
42
{
"name": "git-clone-or-pull",
"version": "4.0.0",
"description": "Ensure a git repo exists on disk and that it's up-to-date",
"main": "index.js",
"scripts": {
"test": "npm run lint && nyc -r lcov perjury -v 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": "AJ Jordan <[email protected]>",
"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": {
"smart-spawn": "^2.0.0"
},
"optionalDependencies": {
"nodegit": "^0.26.4"
},
"devDependencies": {
"coveralls": "^3.0.0",
"jshint": "^2.10.1",
"lodash.assign": "^4.2.0",
"nyc": "^15.0.0",
"perjury": "^1.1.4",
"tmp": "0.1.0"
},
"engine": {
"node": ">=8.0"
}
}