-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "@osskit/wiremock-client",
"version": "4.3.3",
"repository": {
"type": "git",
"url": "https://github.com/osskit/wiremock-client.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint:base": "eslint . --ext .ts",
"lint": "yarn lint:base --fix",
"format": "prettier --write '**/*.{ts,js,json}'",
"prepare": "husky install",
"test": "yarn test:teardown && yarn test:setup && yarn test:start && yarn test:teardown",
"test:start": "NODE_OPTIONS=--experimental-vm-modules jest --config tests/jest.config.ts",
"test:teardown": "cd tests && docker-compose down --remove-orphans",
"test:setup": "yarn build && cd tests && docker-compose pull && docker-compose build && docker-compose up -d"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"p-wait-for": "^5.0.0",
"wiremock-rest-client": "^1.10.0"
},
"devDependencies": {
"@osskit/eslint-config": "^1.0.15",
"@osskit/prettier-config": "^0.0.1",
"@osskit/tsconfig": "^0.0.6",
"@types/jest": "^29.2.5",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.{ts,js,json}": "prettier --write"
}
}