-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
66 lines (66 loc) · 1.91 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
{
"name": "@pactflow/pact-msw-adapter",
"version": "3.0.0",
"main": "./dist/pactMswAdapter.js",
"keywords": [
"pact",
"msw",
"mock-service-work",
"contract testing",
"mocks",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pactflow/pact-msw-adapter.git"
},
"author": {
"name": "Yousaf Nabi",
"url": "https://you54f.com/"
},
"license": "MIT",
"peerDependencies": {
"msw": ">=2.0.0"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"build:clean": "rimraf dist && tsc",
"test": "jest --verbose",
"test:msw": "jest --verbose '\\w.msw.spec.ts'",
"dist:ci": "npm run build:clean && npm test",
"release": "standard-version",
"release:trigger": "./scripts/trigger-release.sh",
"example:test:cy:run": "cd examples/react && npm run start:test:cy:run",
"example:test:cy:open": "cd examples/react && npm run start:test:cy:open",
"example:test:unit": "cd examples/react && npm test",
"example:test:all": "npm run example:test:unit && npm run example:test:cy",
"example:link": "cd examples/react && yarn link @pactflow/pact-msw-adapter",
"example:install": "cd examples/react && yarn install",
"example:install:link": "yarn link && npm run example:install && npm run example:link"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@pact-foundation/pact": "^12.1.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.19.0",
"axios": "^1.6.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"msw": "^2.0.14",
"nock": "^13.5.1",
"regenerator-runtime": "^0.14.1",
"rimraf": "^5.0.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.4.5"
},
"dependencies": {
"lodash": "^4.17.21"
}
}