-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
{
"name": "ocf-tools",
"description": "Tool set for the usage and validation of Open Cap Format (OCF) packages",
"keywords": [
"ocf",
"open cap table format"
],
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --watch",
"test:ci": "jest",
"print:vesting_schedule": "ts-node -r tsconfig-paths/register testing_scripts/vesting_schedule.ts",
"print:vesting_status": "ts-node -r tsconfig-paths/register testing_scripts/vesting_status",
"print:iso_calculator": "ts-node -r tsconfig-paths/register testing_scripts/iso_calculator"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.7.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"date-fns": "^4.1.0",
"fraction.js": "^5.2.1",
"mermaid": "^11.4.0",
"prettier": "^3.3.3",
"tsconfig-paths": "^4.2.0",
"volta": "^0.0.0",
"xstate": "^5.18.2"
}
}