-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 KB
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": "@kodasoftware/testing",
"version": "0.0.0",
"description": "A typescript testing library for Koa APIs or Cypress e2e testing",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"engines": {
"node": ">=16",
"vscode": ">=1.22"
},
"keywords": [
"app",
"kodasoftware",
"testing",
"jest",
"cypress",
"koa",
"nock",
"typescript"
],
"scripts": {
"compile": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"clean": "rimraf dist",
"precompile": "npm run clean",
"prepack": "npm run compile",
"prepublish": "npm run compile"
},
"author": "Koda Software <developer@kodasoftware.com>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@kodasoftware/typescript": "^0.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/jest": "^29.5.12",
"@types/koa": "^2.14.0",
"@types/node": "^20.11.18",
"@typescript-eslint/eslint-plugin": ">=7",
"@typescript-eslint/parser": ">=7",
"eslint": ">=8",
"eslint-config-prettier": ">=9",
"eslint-plugin-jest": ">=27",
"eslint-plugin-node": ">=11",
"eslint-plugin-prettier": ">=5",
"eslint-plugin-simple-import-sort": ">=12",
"prettier": ">=3",
"prettier-eslint": ">=16",
"typescript": ">=5"
},
"dependencies": {
"@pact-foundation/pact": "^12.2.0",
"@shopify/jest-koa-mocks": "^5.1.1",
"cypress-cucumber-preprocessor": "^4.3.1",
"jsonwebtoken": "^9.0.2",
"nock": ">=13"
},
"peerDependencies": {
"jest": ">=29",
"jest-junit": ">=16",
"ts-jest": ">=29",
"ts-node": ">=10"
}
}