-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.17 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
{
"name": "@ckb-light-test/intest",
"description": "test",
"license": "BUSL-1.1",
"publishConfig": {
"access": "public"
},
"version": "1.0.1",
"engines": {
"node": ">=10"
},
"dependencies": {
"@ckb-lumos/codec": "v0.20.0-alpha.1",
"@ckb-lumos/light-client": "v0.20.0-alpha.1",
"@ckb-lumos/lumos": "v0.20.0-alpha.1",
"@ckb-lumos/rpc": "v0.20.0-alpha.1",
"dotenv": "^16.0.1",
"mochawesome-merge": "^4.2.1",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"babel-cli": "^6.26.0",
"chai": "^4.2.0",
"ckb-js-toolkit": "^0.10.2",
"decimal.js": "^10.2.1",
"mocha": "^9.2.2",
"mocha-chai-jest-snapshot": "^1.1.0",
"mochawesome": "^7.1.3",
"mochawesome-report-generator": "^6.2.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"solhint": "^3.2.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^8.5.4",
"typechain": "^4.0.0",
"typescript": "^3.7.3"
},
"scripts": {
"test": "mocha --config test/runners/mocha/.mocharc.jsonc --reporter mochawesome",
"test-load": "mocha --config test/runners/mocha/.mocharc.load.jsonc --reporter mochawesome",
"test-data": "mocha --config test/runners/mocha/.mocharc.data.jsonc --reporter mochawesome",
"test-cli": "mocha --config test/runners/mocha/.mocharc.cli.jsonc --reporter mochawesome",
"test-transfer-issue": "mocha --config test/runners/mocha/.mocharc.issue.jsonc --reporter mochawesome",
"test-index-panic": "mocha --config test/runners/mocha/.mocharc.index-panic.jsonc --reporter mochawesome",
"test-roll-back": "mocha --config test/runners/mocha/.mocharc.light.rollback.jsonc --reporter mochawesome",
"test-roll-back:transfer": "mocha --config test/runners/mocha/.mocharc.light.rollback.jsonc --grep \"transfer\"--reporter mochawesome",
"test-roll-back:cut10": "mocha --config test/runners/mocha/.mocharc.light.rollback.jsonc --grep \"cut 10\"--reporter mochawesome",
"test-roll-back:cut300": "mocha --config test/runners/mocha/.mocharc.light.rollback.jsonc --grep \"cut 300\"--reporter mochawesome"
}
}