-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "dappeteer",
"version": "1.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",
"prepublish": "npm run build",
"test": "mocha -r ts-node/register test/test.ts --timeout=200000 --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/dappeteer.git"
},
"keywords": [
"e2e",
"testing",
"metamask",
"puppeteer",
"dapp",
"ethereum"
],
"author": "Juan Cazala <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/puppeteer": "^1.12.4",
"dcl-tslint-config-standard": "^1.1.0",
"ganache-core": "^2.5.5",
"mocha": "5.2.0",
"puppeteer": "^1.16.0",
"rocketh": "https://github.com/wighawag/rocketh.git#3bcfdb3b7d38ac98449b3d5075e12868b32d5a0c",
"serve-handler": "5.0.8",
"solc": "0.5.2",
"ts-node": "^8.2.0",
"typescript": "^3.5.1",
"web3": "1.0.0-beta.34"
},
"peerDependencies": {
"puppeteer": "^1.16.0"
}
}