forked from hexenq/nest-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "nest-gitlab",
"version": "1.0.2",
"description": "A node-gitlab 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": [
"nestjs",
"gitlab",
"api"
],
"author": "Hexen Qi <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/hexenq/nest-gitlab#readme",
"bugs": {
"url": "https://github.com/hexenq/nest-gitlab/issues"
},
"files": [
"dist"
],
"devDependencies": {
"@nestjs/common": "^6.5.3",
"@nestjs/core": "^6.5.3",
"@nestjs/platform-express": "^6.5.3",
"gitlab": "^10.0.0",
"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": {
"@nestjs/common": "^5.0.0 || ^6.0.0",
"gitlab": ">6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "tslint --project tsconfig.json"
}
}