forked from keptn-contrib/jenkins-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "sh.keptn.github-service",
"version": "0.1.0",
"description": "Jenkins service",
"main": "dist/server.js",
"scripts": {
"build-ts": "tsc",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"dev": "nodemon",
"test": "echo \"Testing...\" && nyc --reporter=text nyc mocha && nyc report",
"lint": "tslint --project tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keptn/github-service.git"
},
"author": "Johannes Bräuer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/keptn/github-service/issues"
},
"homepage": "https://github.com/keptn/github-service#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.6",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"nock": "^10.0.6",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"sinon": "^7.2.4",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.3"
},
"dependencies": {
"@types/express": "^4.16.1",
"axios": "^0.18.0",
"cloudevent": "^0.3.0",
"express": "^4.16.4",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"mocha": "^6.0.2",
"mustache": "^3.0.1",
"nodejs-base64": "^1.0.3",
"reflect-metadata": "^0.1.13",
"swagger-express-ts": "^1.0.1",
"swagger-ui-dist": "^3.20.9",
"yamljs": "^0.3.0",
"jenkins": "^0.23.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/server.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"cobertura"
],
"sourceMap": true,
"instrument": true
}
}