-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "ocx",
"version": "0.4.0-alpha+main",
"description": "A collection of libraries and binaries for converting Open Cap Table Format (OCF) packages to Excel",
"main": "dist/index.js",
"bin": {
"ocf2ocx": "dist/src/cli/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"prepack": "npm run build",
"prepare": "husky install",
"test": "jest --passWithNoTests",
"cli": "npm run build && node dist/src/cli/index.js",
"build": "tsc",
"prettier": "prettier --ignore-unknown --write",
"lint": "eslint --max-warnings=0 --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix"
},
"lint-staged": {
"*": "npm run prettier",
"*.{js,ts}": "npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captable/ocx.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/captable/ocx/issues"
},
"homepage": "https://github.com/captable/ocx#readme",
"devDependencies": {
"@types/big.js": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"lint-staged": "^13.1.0",
"prettier": "2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"engines": {
"node": "^16 || ^18 || ^20",
"npm": "^9.4"
},
"dependencies": {
"commander": "^10.0.0",
"exceljs": "^4.3.0",
"big.js": "^6.2.1"
}
}