-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mockthereum",
"version": "0.2.0",
"description": "Powerful friendly Ethereum mock node & proxy ",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"directories": {
"test": "test"
},
"bin": {
"mockthereum": "./dist/admin-bin.js"
},
"scripts": {
"build": "npm run build:src && npm run build:doc",
"build:src": "tsc && chmod +x ./dist/admin-bin.js",
"build:doc": "typedoc src/main.ts",
"pretest": "npm run build",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha -r ts-node/register 'test/**/*.spec.ts'",
"test:browser": "karma start",
"test:browser:dev": "CONTINUOUS_TEST=true npm run test",
"test:browser:debug": "HEADFUL_TEST=true CONTINUOUS_TEST=true npm run test",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/mockthereum.git"
},
"keywords": [
"ethereum",
"eth",
"web3",
"dapp",
"mock",
"test",
"proxy"
],
"author": "Tim Perry <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/httptoolkit/mockthereum/issues"
},
"homepage": "https://github.com/httptoolkit/mockthereum#readme",
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"mockttp": "^3.1.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/chai": "^4.2.22",
"@types/lodash": "^4.14.177",
"@types/mocha": "^9.0.0",
"@types/uuid": "^8.3.4",
"chai": "^4.3.4",
"esbuild": "^0.14.38",
"ganache": "^7.4.1",
"karma": "^6.3.19",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-esbuild": "^2.2.4",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.34",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typedoc": "^0.23.11",
"typescript": "^4.5.2",
"web3": "^1.7.3",
"web3-utils": "^1.7.3"
},
"dependencies": {
"@ethersproject/abi": "^5.6.3",
"mockttp": "^3.1.0",
"uuid": "^8.3.2"
}
}