-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 798 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 798 Bytes
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
{
"name": "@wiremock/wiremock-testcontainers-node",
"version": "0.0.1",
"description": "Run WireMock with JavaScript/TypeScript tests using Testcontainers for Node.js",
"type": "module",
"dependencies": {
"testcontainers": "^10.2.1"
},
"source": "src/index.js",
"main": "dist/index.mjs",
"scripts": {
"build": "parcel build",
"test": "vitest run",
"format": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "Aditya Ghidora",
"license": "Apache License v2",
"devDependencies": {
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"parcel": "^2.10.0",
"prettier": "^3.0.3",
"vitest": "^0.34.6"
}
}