forked from screwdriver-cd/scm-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "screwdriver-scm-base",
"version": "1.0.0",
"description": "Base class for defining the behavior between screwdriver and source control management systems",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "jenkins-mocha --recursive"
},
"repository": {
"type": "git",
"url": "[email protected]:screwdriver-cd/scm-base.git"
},
"homepage": "https://github.com/screwdriver-cd/scm-base",
"bugs": "https://github.com/screwdriver-cd/scm-base/issues",
"keywords": [
"screwdriver",
"yahoo"
],
"license": "BSD-3-Clause",
"author": "Noah Katzman <[email protected]>",
"contributors": [
"Dao Lam <[email protected]>",
"Darren Matsumoto <[email protected]>",
"Jeremiah Wuenschel <[email protected]>",
"Min Zhang <[email protected]>",
"Noah Katzman <[email protected]>",
"Peter Peterson <[email protected]>",
"St. John Johnson <[email protected]",
"Tiffany Kyi <[email protected]>"
],
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.2.2",
"eslint-config-screwdriver": "^2.0.0",
"eslint-plugin-import": "^1.12.0",
"jenkins-mocha": "^2.6.0",
"mockery": "^1.7.0"
},
"dependencies": {
"joi": "^9.0.4",
"screwdriver-data-schema": "^10.0.0"
}
}