-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "@statechannels/channel-client",
"description": "Browser-compatible JS client implementing the State Channels Client API",
"version": "0.4.6",
"author": "snario <[email protected]>",
"dependencies": {
"@statechannels/client-api-schema": "0.4.5",
"@statechannels/iframe-channel-provider": "0.3.17",
"ethers": "5.0.12",
"eventemitter3": "4.0.7",
"loglevel": "1.6.8"
},
"devDependencies": {
"@microsoft/api-extractor": "7.11.2",
"@types/eslint": "7.2.3",
"@types/eslint-plugin-prettier": "2.2.0",
"@types/jest": "26.0.14",
"@types/node": "14.11.2",
"@types/prettier": "1.19.0",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"eslint": "7.10.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-tsdoc": "0.2.6",
"jest": "26.4.2",
"lint-staged": "10.0.4",
"prettier": "1.19.1",
"rxjs": "6.6.3",
"ts-jest": "26.4.1",
"typescript": "4.0.3"
},
"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:typescript": "rm -rf lib; tsc -b .",
"generate-api": "api-extractor run --local",
"lint:check": "eslint \"{src,tests}/**/*.ts\"",
"lint:write": "yarn lint:check --fix",
"prepare": "yarn build:typescript && yarn generate-api",
"test": "yarn jest",
"test:ci": "jest --runInBand"
}
}