-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "@sriharikapu/dappeteer",
"version": "2.0.0",
"description": "E2E testing for dApps using Puppeteer + MetaMask",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"metamask",
"dist"
],
"scripts": {
"postinstall": "npx rimraf node_modules/**/**/.git",
"build": "tsc",
"prepare": "npm run build",
"test": "mocha -r ts-node/register test/test.ts --timeout=200000 --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/sriharikapu/dappetter"
},
"keywords": [
"e2e",
"testing",
"metamask",
"puppeteer",
"dapp",
"ethereum"
],
"author": "Srihari Kapu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/puppeteer": "^5.4.2",
"dcl-tslint-config-standard": "^2.0.0",
"ganache-core": "^2.13.2",
"mocha": "^8.2.1",
"puppeteer": "^5.5.0",
"rocketh": "https://github.com/wighawag/rocketh.git#3bcfdb3b7d38ac98449b3d5075e12868b32d5a0c",
"serve-handler": "~6.1.3",
"solc": "0.5.17",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"web3": "1.3.3"
},
"peerDependencies": {
"puppeteer": "^5.5.0"
},
"devDependencies": {
"@types/node":"14.14.31"
}
}