-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "nest-gitlab",
"version": "3.0.0",
"description": "A gitbeaker wrapper for NestJS framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json",
"clean": "rimraf dist",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/hexenq/nest-gitlab.git"
},
"keywords": [
"nest",
"nestjs",
"gitlab",
"api",
"gitbeaker"
],
"author": "Hexen Qi <hexenq@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/hexenq/nest-gitlab#readme",
"bugs": {
"url": "https://github.com/hexenq/nest-gitlab/issues"
},
"files": [
"dist"
],
"devDependencies": {
"@gitbeaker/node": "^28.0.4",
"@nestjs/common": "^7.6.7",
"@nestjs/core": "^7.6.7",
"@nestjs/platform-express": "^7.6.7",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"rxjs": "^6.5.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"@gitbeaker/node": ">=23.6.0",
"@nestjs/common": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "tslint --project tsconfig.json"
}
}