-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "@statechannels/channel-client",
"description": "Browser-compatible JS client implementing the State Channels Client API",
"version": "0.3.0",
"author": "snario <liam@l4v.io>",
"dependencies": {
"@statechannels/client-api-schema": "0.3.0",
"@statechannels/iframe-channel-provider": "0.3.0",
"ethers": "4.0.45",
"eventemitter3": "4.0.0",
"loglevel": "1.6.8"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.9.2",
"@types/eslint": "6.1.7",
"@types/eslint-plugin-prettier": "2.2.0",
"@types/node": "13.5.1",
"@types/prettier": "1.19.0",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-tsdoc": "^0.2.6",
"jest": "25.1.0",
"lint-staged": "10.0.4",
"prettier": "1.19.1",
"rxjs": "6.5.5",
"ts-jest": "25.0.0",
"typescript": "3.7.5"
},
"files": [
"lib/src",
"lib/tests"
],
"keywords": [
"ethereum",
"state channels"
],
"license": "MIT",
"main": "lib/src/index.js",
"repository": "statechannels/monorepo/blob/master/packages/channel-client",
"scripts": {
"build": "yarn build:typescript && api-extractor run --local",
"build:typescript": "tsc -b .",
"lint:check": "eslint \"{src,tests}/**/*.ts\"",
"lint:write": "yarn lint:check --fix",
"prepare": "rm -rf lib && yarn build",
"test": "jest",
"test:ci": "jest --runInBand"
}
}