-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.75 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.75 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
{
"name": "@statechannels/e2e-tests",
"description": "Container package for end to end tests, from contracts to browser apps",
"version": "0.0.1",
"author": "snario <liam@l4v.io>",
"devDependencies": {
"@statechannels/channel-provider": "0.0.5",
"@statechannels/client-api-schema": "0.0.3",
"@statechannels/devtools": "0.1.4",
"@statechannels/xstate-wallet": "0.0.8",
"@types/eslint": "6.1.7",
"@types/eslint-plugin-prettier": "2.2.0",
"@types/jest": "25.1.0",
"@types/node": "13.5.1",
"@types/prettier": "1.19.0",
"@types/puppeteer": "2.0.1",
"@types/wait-on": "4.0.0",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"dappeteer": "1.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-prettier": "3.1.2",
"jest": "25.1.0",
"lint-staged": "10.0.4",
"prettier": "1.19.1",
"puppeteer": "2.1.1",
"ts-jest": "25.0.0",
"ts-node": "8.9.1",
"typescript": "3.7.5",
"wait-on": "4.0.0"
},
"license": "MIT",
"lint-staged": {
"*/**/*.{ts,js}": "eslint --cache"
},
"main": "index.js",
"repository": "statechannels/apps/blob/master/packages/e2e-tests",
"scripts": {
"lint:check": "eslint \"**/*.ts\" --cache",
"lint:write": "eslint \"**/*.ts\" --fix",
"precommit": "lint-staged --quiet",
"puppeteer:dev:rps": "ts-node -O '{\"module\":\"commonjs\",\"noUnusedLocals\":false}' ./puppeteer/scripts/rps.ts",
"puppeteer:dev:web3torrent": "ts-node -O '{\"module\":\"commonjs\",\"noUnusedLocals\":false}' ./puppeteer/scripts/web3torrent.ts",
"test": "jest --bail --runInBand",
"test:show": "HEADLESS=false yarn run test"
}
}