-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 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
{
"name": "wiremock-mapper",
"version": "0.7.2",
"description": "DSL for setting up WireMock mappings.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README"
],
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "rm -rf dist",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint .",
"release": "npm run lint && npm run test && npm run build && standard-version",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ike18t/wiremock_mapper_node.git"
},
"keywords": [
"wiremock"
],
"author": "Isaac Datlof <ike18t@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ike18t/wiremock_mapper_node/issues"
},
"homepage": "https://github.com/ike18t/wiremock_mapper_node#readme",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"nock": "^13.5.4",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"testcontainers": "^10.28.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
},
"peerDependencies": {
"jest": ">=24.0.0"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
}
}
}