Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-gitlab

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-gitlab - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

AUTHORS

5

History.md
0.1.1 / 2014-05-13
==================
* Add MergeRequest resource. (@ledsun)
0.1.0 / 2013-08-07

@@ -3,0 +8,0 @@ ==================

2

lib/gitlab.js

@@ -23,2 +23,3 @@ /*!

var Repository = require('./repository');
var MergeRequest = require('./merge_request');

@@ -44,2 +45,3 @@ /**

this.users = new User(this);
this.merge_requests = new MergeRequest(this);

@@ -46,0 +48,0 @@ this.addResources({

2

LICENSE.txt
This software is licensed under the MIT License.
Copyright (C) 2013 by fengmk2 <fengmk2@gmail.com>
Copyright (C) 2013 - 2014 fengmk2 <fengmk2@gmail.com>

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "node-gitlab",
"version": "0.1.0",
"version": "0.1.1",
"description": "Gitlab API nodejs client.",

@@ -12,17 +12,20 @@ "main": "index.js",

"dependencies": {
"restful-client": ">=0.0.2",
"debug": ">=0.7.2"
"debug": "~0.8.1",
"restful-client": "~0.0.4"
},
"devDependencies": {
"should": "*",
"pedding": "*",
"autod": "*",
"blanket": "*",
"travis-cov": "*",
"contributors": "*",
"coveralls": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"mocha": "*"
"pedding": "~0.0.3",
"should": "~3.3.1",
"travis-cov": "*"
},
"homepage": "https://github.com/repo-utils/gitlab",
"repository": {
"type": "git",
"url": "git://github.com/fengmk2/gitlab.git"
"url": "git://github.com/repo-utils/gitlab.git"
},

@@ -29,0 +32,0 @@ "keywords": [

@@ -1,7 +0,9 @@

gitlab [![Build Status](https://secure.travis-ci.org/fengmk2/gitlab.png)](http://travis-ci.org/fengmk2/gitlab)
[![Coverage Status](https://coveralls.io/repos/fengmk2/gitlab/badge.png)](https://coveralls.io/r/fengmk2/gitlab)
gitlab
=======
![logo](https://raw.github.com/fengmk2/gitlab/master/logo.png)
[![Build Status](https://secure.travis-ci.org/repo-utils/gitlab.png)](http://travis-ci.org/repo-utils/gitlab)
[![Coverage Status](https://coveralls.io/repos/repo-utils/gitlab/badge.png)](https://coveralls.io/r/repo-utils/gitlab)
![logo](https://raw.github.com/repo-utils/gitlab/master/logo.png)
Gitlab API nodejs client.

@@ -40,3 +42,3 @@

* Get a project's milestone.
*
*
* @param {Object} params

@@ -51,3 +53,3 @@ * - {Number} id, project's id

* List a project's all milestones.
*
*
* @param {Object} params

@@ -63,3 +65,3 @@ * - {Number} id, project's id.

* Create a milestone.
*
*
* @param {Object} params

@@ -94,3 +96,3 @@ * - {Number} id The ID of a project

* Get a list of repository branches from a project, sorted by name alphabetically.
*
*
* @param {Object} params

@@ -103,6 +105,6 @@ * - {String} id The ID of a project

/**
* Protects a single project repository branch.
* This is an idempotent function, protecting an already protected repository branch
* Protects a single project repository branch.
* This is an idempotent function, protecting an already protected repository branch
* still returns a 200 Ok status code.
*
*
* @param {Object} params

@@ -116,6 +118,6 @@ * - {String} id The ID of a project

/**
* Unprotects a single project repository branch.
* This is an idempotent function, unprotecting an already unprotected repository branch
* Unprotects a single project repository branch.
* This is an idempotent function, unprotecting an already unprotected repository branch
* still returns a 200 Ok status code.
*
*
* @param {Object} params

@@ -130,3 +132,3 @@ * - {String} id The ID of a project

* Get a single project repository branch.
*
*
* @param {Object} params

@@ -141,3 +143,3 @@ * - {String} id The ID of a project

* Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
*
*
* @param {Object} params

@@ -151,3 +153,3 @@ * - {String} id The ID of a project

* Get a list of repository commits in a project.
*
*
* @param {Object} params

@@ -162,3 +164,3 @@ * - {String} id The ID of a project

* Get a list of repository files and directories in a project.
*
*
* @param {Object} params

@@ -174,3 +176,3 @@ * - {String} id The ID of a project

* Get the raw file contents for a file.
*
*
* @param {Object} params

@@ -188,3 +190,3 @@ * - {String} id The ID of a project

```bash
$ git summary
$ git summary

@@ -196,3 +198,3 @@ project : gitlab

files : 26
authors :
authors :
20 fengmk2 90.9%

@@ -202,7 +204,7 @@ 2 Ondrej 9.1%

## License
## License
(The MIT License)
Copyright (c) 2013 fengmk2 &lt;fengmk2@gmail.com&gt;
Copyright (c) 2013 - 2014 fengmk2 &lt;fengmk2@gmail.com&gt;

@@ -209,0 +211,0 @@ Permission is hereby granted, free of charge, to any person obtaining

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc