forked from elquimista/gitlab-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 708 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 708 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
{
"name": "gitlab-api-wrapper",
"version": "1.3.0",
"description": "The most comprehensive GitLab API, almost covers all GitLab API endpoints. Also, we provide an isomorphic API which can be used in both browser and Node.js environments.",
"keywords": [
"gitlab",
"api",
"client"
],
"main": "index.js",
"scripts": {
"test": "mocha tests/*.js --timeout 20000"
},
"repository": "https://github.com/clthck/gitlab-api-wrapper",
"author": "clthck",
"license": "MIT",
"dependencies": {
"asny": "^2.5.0",
"glob": "^7.1.2",
"isomorphic-fetch": "^2.2.1",
"query-string": "^4.3.4"
},
"devDependencies": {
"mocha": "^3.4.2",
"should": "^11.2.1"
}
}