-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
55
56
57
58
59
60
61
62
{
"name": "@ckb-lumos/e2e-test",
"version": "0.23.0-next.0",
"private": true,
"description": "CKB E2E test",
"homepage": "https://github.com/ckb-js/lumos#readme",
"bugs": {
"url": "https://github.com/ckb-js/lumos/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckb-js/lumos.git"
},
"license": "MIT",
"directories": {
"test": "tests"
},
"scripts": {
"fmt": "prettier --write \"{src,tests,examples}/**/*.ts\" package.json",
"lint": "eslint -c ../../.eslintrc.js \"{src,tests,examples}/**/*.ts\"",
"e2e-test": "ava **/*.e2e.test.ts --timeout=10m",
"test:e2e": "npx ts-node scripts/run.ts"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"@ckb-lumos/base": "0.23.0-next.0",
"@ckb-lumos/bi": "0.23.0-next.0",
"@ckb-lumos/ckb-indexer": "0.23.0-next.0",
"@ckb-lumos/codec": "0.23.0-next.0",
"@ckb-lumos/crypto": "0.23.0-next.0",
"@ckb-lumos/common-scripts": "0.23.0-next.0",
"@ckb-lumos/config-manager": "0.23.0-next.0",
"@ckb-lumos/hd": "0.23.0-next.0",
"@ckb-lumos/helpers": "0.23.0-next.0",
"@ckb-lumos/light-client": "0.23.0-next.0",
"@ckb-lumos/rpc": "0.23.0-next.0",
"@ckb-lumos/runner": "0.23.0-next.0",
"@ckb-lumos/toolkit": "0.23.0-next.0",
"@ckb-lumos/utils": "0.23.0-next.0",
"@types/kill-port": "^2.0.0",
"events": "^3.3.0",
"kill-port": "^2.0.1"
},
"devDependencies": {
"@ckb-lumos/testkit": "0.23.0-next.0",
"@types/request": "^2.48.8",
"@types/sinon": "^10.0.6",
"find-process": "^1.4.7",
"request": "^2.88.2",
"sinon": "^15.0.4"
},
"engines": {
"node": ">=12.0.0"
}
}