-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
107 lines (107 loc) · 3.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "nestjs-pact",
"version": "2.3.2",
"license": "MIT",
"description": "Injectable Pact.js Consumer/Producer for NestJS",
"keywords": [
"nest",
"nestjs",
"pact",
"pactjs",
"nestjs-pact",
"cdc"
],
"contributors": [
{
"name": "Omer Morad",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/omermorad/nestjs-pact.git"
},
"bugs": {
"url": "https://github.com/omermorad/nestjs-pact/issues"
},
"readme": "https://github.com/omermorad/nestjs-pact/README.md",
"scripts": {
"prebuild": "./node_modules/.bin/rimraf dist",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "npm run lint && jest --config jest.config.json --runInBand --verbose",
"test:ci": "npm run lint && jest --config jest.config.json --runInBand --coverage --collectCoverage=true --reporters=jest-junit",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"semantic-release": "semantic-release"
},
"files": [
"dist",
"index.d.ts",
"index.js",
"README.md"
],
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1",
"@nestjs/testing": "^9.2.1",
"@pact-foundation/pact": "^13.1.4",
"@pact-foundation/pact-cli": "^16.0.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/get-port": "^4.2.0",
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.56.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "29.3.1",
"jest-junit": "15.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"semantic-release-cli": "^5.4.4",
"ts-jest": "29.1.1",
"ts-loader": "^9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@nestjs/common": "7.x || 8.x || 9.x || 10.x",
"@nestjs/core": "7.x || 8.x || 9.x || 10.x",
"@pact-foundation/pact": "10.x || 11.x || 12.x || 13.x",
"@pact-foundation/pact-cli": "15.x || 16.x"
},
"dependencies": {
"get-port": "^5.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}