This repository was archived by the owner on Jun 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.46 KB
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
{
"name": "gitlab-ci-trigger",
"version": "0.2.0",
"description": "Trigger GitLab CI builds on incoming GitLab webhook requests and set additional job variables",
"main": "./dist/main.js",
"repository": "https://github.com/ffittschen/gitlab-ci-trigger",
"author": "Florian Fittschen",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"test": "jest",
"testing": "jest --watch",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"lint-fix": "npm run lint -- --fix",
"postinstall": "gulp scripts"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
},
"dependencies": {
"@types/body-parser": "^1.16.3",
"@types/debug": "^4.1.4",
"@types/express": "^4.0.35",
"@types/jest": "^24.0.15",
"@types/morgan": "^1.7.32",
"@types/node": "^12.6.2",
"@types/supertest": "^2.0.0",
"body-parser": "^1.17.1",
"debug": "^4.1.1",
"express": "^4.15.2",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"morgan": "^1.8.1",
"typescript": "^3.5.3"
},
"devDependencies": {
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"tslint": "^5.1.0"
}
}