-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "@founderpath/financets",
"version": "1.2.1",
"description": "Finance.ts is a library for financial calculations",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./cjs/index.js",
"import": "./esm/index.js",
"default": "./esm/index.js"
}
},
"main": "cjs/index.js",
"homepage": "https://github.com/founderpathcom/finance.ts",
"bugs": {
"url": "https://github.com/founderpathcom/finance.ts/issues"
},
"keywords": [
"finance",
"javascript",
"typescript",
"financejs",
"finance.js",
"financets",
"finance.ts"
],
"author": "Makara Sok (https://maktouch.com)",
"license": "MIT",
"scripts": {
"clean": "rimraf cjs/ esm/ types/",
"build": "yarn clean && yarn build:tsc && yarn build:cjs && yarn build:esm",
"build:tsc": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:cjs": "echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"build:esm": "echo '{\"type\": \"module\"}' > esm/package.json",
"test": "esno --test ./src/*.test.ts",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/founderpathcom/finance.ts.git"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"esno": "^0.17.0",
"rimraf": "^5.0.1",
"typescript": "^4.1.5"
},
"engines": {
"node": ">=14.4"
},
"volta": {
"node": "20.4.0",
"yarn": "1.18.0"
},
"files": [
"package.json",
"README.md",
"esm",
"cjs",
"LICENSE",
"src"
]
}