-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.48 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "apexpro-connector-node",
"version": "0.2.0-alpha.9",
"description": "ApexPro Connector Node.js SDK",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": "https://github.com/ApeX-Protocol/apexpro-connector-node",
"authors": [
"lihang941",
"RoderickIsWatching"
],
"scripts": {
"test": "mocha test/**.spec.ts",
"test:env": "mocha test/index.spec.ts",
"test:pro": "mocha test/pro/**.spec.ts",
"test:omni": "mocha test/omni/**.spec.ts",
"test:omniPrivate": "mocha test/omni/private.spec.ts",
"clean": "rimraf dist lib lib.esm lib.umd cache artifacts out docs",
"build": "npm run clean && npm run build:cjs ",
"build:cjs": "tsc -p tsconfig.cjs.json --diagnostics",
"build:umd": "webpack",
"format": "prettier --write \"(src|test)/**/*.ts\"",
"lint": "tslint -p tsconfig.json --fix",
"doc": "typedoc --excludeExternals --excludePrivate --out docs ./src/**",
"publish:npm": "npm run clean && npm run build && npm publish && npm run clean"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.15.8",
"@types/mocha": "^5.2.7",
"@types/node": "^11.12.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babelify": "^10.0.0",
"big.js": "^6.2.1",
"chai": "^4.2.0",
"copy-webpack-plugin": "^12.0.2",
"es6-promisify": "^7.0.0",
"hardhat": "^2.6.5",
"mocha": "10.1.0",
"mochawesome": "^7.1.3",
"prettier": "^2.5.1",
"rimraf": "^2.6.3",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.10",
"typescript": "5.5.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"axios": "^1.6.7",
"bigint-buffer": "^1.1.5",
"bignumber.js": "^9.0.1",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.2.0",
"ethereum-cryptography": "0.1.3",
"ethers": "5.5.4",
"lodash": "^4.17.21",
"qs": "^6.11.1",
"viem": "^2.21.22",
"web3": "1.7.4"
},
"mocha": {
"timeout": 120000,
"require": "ts-node/register",
"recursive": true,
"exit": true,
"reporter": "mochawesome",
"reporterOptions": {
"reportDir": "test-report",
"reportFilename": "apexpro-connector-node"
},
"extension": "ts"
}
}