forked from pactflow/pact-cypress-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "@pactflow/pact-cypress-adapter",
"version": "1.3.0",
"description": "A cypress adapter for pact",
"keywords": [
"pact",
"cypress",
"contract testing",
"ui"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*.js",
"dist/**/*.js",
"dist/index.d.ts"
],
"scripts": {
"test": "jest --testPathPattern=test",
"build": "tsc",
"test:example": "cd example/todo-example && npm i && npm run build && npm run http-server && npm run cypress:run",
"release": "standard-version"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"cypress": "^9.5.0",
"eslint": "^8.9.0",
"jest": "^27.5.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/node": "^17.0.21",
"@types/lodash": "^4.14.178",
"lodash": "^4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pactflow/cypress-pact-adapter.git"
},
"bugs": {
"url": "https://github.com/pactflow/cypress-pact-adapter/issues"
},
"homepage": "https://github.com/pactflow/cypress-pact-adapter#readme"
}