-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1 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
{
"name": "gitlab-node",
"version": "1.5.0",
"description": "access gitlab api by using node",
"main": "lib/index.js",
"files": [
"lib/"
],
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"doc": "npm run doc:build && npm run doc:publish",
"doc:build": "jsdoc -c jsdoc-conf.json",
"doc:publish": "node script/doc.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"keywords": [
"gitlab",
"api"
],
"author": "huang.xinghui <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:huang-x-h/node-gitlab.git"
},
"bugs": {
"url": "https://github.com/huang-x-h/node-gitlab/issues"
},
"homepage": "https://github.com/huang-x-h/node-gitlab",
"dependencies": {
"debug": "^2.6.3",
"got": "^6.7.1"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.5",
"gh-pages": "^1.2.0",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.4.3"
}
}