forked from screwdriver-cd/scm-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
43
44
45
46
47
{
"name": "screwdriver-scm-gitlab",
"version": "2.0.0",
"description": "GitLab implementation for the scm-base class",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "jenkins-mocha --recursive",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "[email protected]:bdangit/scm-gitlab.git"
},
"homepage": "https://github.com/bdangit/scm-gitlab",
"bugs": "https://github.com/bdangit/scm-gitlab/issues",
"keywords": [
"screwdriver",
"gitlab"
],
"license": "MIT",
"author": "Ben Dang <[email protected]>",
"contributors": [],
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.6.0",
"eslint-config-screwdriver": "^3.0.0",
"jenkins-mocha": "^4.1.2",
"mockery": "^2.0.0",
"sinon": "^1.17.7",
"sinon-as-promised": "^4.0.2"
},
"dependencies": {
"circuit-fuses": "^2.2.1",
"hoek": "^5.0.3",
"joi": "^13.0.0",
"request": "^2.80.0",
"screwdriver-data-schema": "^18.13.5",
"screwdriver-scm-base": "^4.0.1"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
}
}