-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 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
{
"name": "kulap-sdk",
"version": "0.1.5",
"description": "Javascript SDK for Kulap DEX",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"keywords": [
"ethereum",
"defi",
"javascript"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest",
"run-ganache": "ganache-cli --fork $(grep FORKED_MAINNET_URL .env | cut -d '=' -f2) --mnemonic $(grep MNEMONIC .env | cut -d '=' -f2)"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testTimeout": 60000,
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.15",
"ganache-cli": "^6.12.1",
"jest": "^26.6.3",
"rollup": "^2.33.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"winston": "^3.3.3"
},
"dependencies": {
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.24",
"web3": "^1.3.0"
}
}