-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
109 lines (109 loc) · 3.04 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
108
109
{
"name": "jest-pact",
"version": "0.11.1",
"description": "a pact adaptor for jest",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src --ext .ts --config .eslintrc",
"lint:fix": "npm run lint -- --fix",
"build": "rimraf dist && tsc --project tsconfig.dist.json",
"test": "jest --coverage --runInBand --verbose --coverageReporters=lcov",
"dist": "npm run lint && npm run test && npm run build",
"deploy:prepare": "./scripts/create_npmrc_file.sh",
"format:base": "prettier \"src/**/*.{ts,js}\"",
"format:fix": "npm run format:base -- --write",
"format:check": "npm run format:base -- --check",
"release": "standard-version",
"release:dryrun": "npm run test && npm publish --dry-run",
"release:trigger": "./scripts/trigger-release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pact-foundation/jest-pact.git"
},
"engines": {
"node": ">=16"
},
"author": "YOU54F",
"contributors": [
{
"name": "Yousaf Nabi",
"url": "https://github.com/YOU54F"
},
{
"name": "Timothy Jones",
"url": "https://github.com/TimothyJones"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pact-foundation/jest-pact/issues"
},
"homepage": "https://github.com/pact-foundation/jest-pact/#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^19.2.2",
"@pact-foundation/pact": "^13.0.0",
"@pact-foundation/pact-js-prettier-config": "^1.0.0",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^29.2.3",
"@types/supertest": "2.0.8",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"husky": "^4.3.8",
"jest": "^29.3.1",
"jest-junit": "16.0.0",
"lint-staged": "13.2.3",
"prettier": "3.3.1",
"rimraf": "5.0.7",
"standard-version": "^9.0.0",
"supertest": "7.0.0",
"ts-jest": "^29.0.3",
"ts-node": "10.9.1",
"typescript": "4.6.4"
},
"peerDependencies": {
"@pact-foundation/pact": "^v10.0.0-beta.61 || ^10.0.2 || ^11.0.2 || ^12.0.0 || ^13.0.0",
"jest": "^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"npm run format:fix",
"npm run lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"rules": {
"header-max-length": [
0,
"always",
72
],
"subject-case": [
2,
"always",
"sentence-case"
]
}
}
}