-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.54 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@hellaweb3/foundryanvil-testcontainers-nodejs",
"description": "This Typescript module provides a Fluent API style method of configuring and starting a Anvil testcontainers node. During your test execution, the module provides a viem test client and streamlined helper methods to interact with the node.",
"homepage": "https://github.com/hella-web3/foundryanvil-testcontainers-nodejs#readme",
"repository": "https://github.com/hella-web3/foundryanvil-testcontainers-nodejs",
"bugs": "https://github.com/hella-web3/foundryanvil-testcontainers-nodejs/issues",
"keywords": [
"testcontainers",
"foundry",
"anvil",
"ethereum",
"viem",
"evm"
],
"version": "0.2.3",
"license": "MIT",
"author": "Chris Anatalio",
"files": [
"dist",
"src"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsdx dev",
"build": "tsdx build",
"test": "jest --colors --injectGlobals",
"eslint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"check": "pnpm build && pnpm typecheck && pnpm eslint && pnpm test"
},
"dependencies": {
"testcontainers": "^11.11.0",
"viem": "^2.45.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"bunchee": "^6.9.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.1.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tsdx": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
},
"jest": {
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"app.module.ts",
"main.ts",
".*\\.module\\.ts",
".*\\.dto\\.ts"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testEnvironment": "node",
"testRegex": "test/.*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"engines": {
"node": ">=22"
}
}