-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 916 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 916 Bytes
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
{
"name": "defi-sim",
"description": "A set of tools that simulate defi protocols with javascript.",
"version": "1.0.3",
"author": "Samuel Van Erps <sverps@gmail.com>",
"license": "MIT",
"repository": "sverps/defi-sim",
"homepage": "https://sverps.github.io/defi-sim/",
"keywords": [
"defi",
"uniswap",
"liquidity pool"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"LICENSE"
],
"scripts": {
"start": "ts-node ./src/index",
"test": "jest",
"build": "rm -rf dist/ && tsc --build",
"docs": "typedoc --out docs src/index.ts",
"publish-local": "yarn build && npm pack"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.25",
"typescript": "^4.9.4"
},
"dependencies": {}
}