-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"name": "@bitzlato/money-js",
"version": "0.0.4",
"description": "A small library for working with monetary values",
"author": "Maksim Gerasimov <[email protected]> (http://github.com/trzmaxim)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitzlato/money-js.git"
},
"bugs": {
"url": "https://github.com/bitzlato/money-js/issues"
},
"homepage": "https://github.com/bitzlato/money-js#readme",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "npx jest && npx tsc --noEmit"
},
"files": [
"dist"
],
"dependencies": {
"@types/big.js": "^6.1.2",
"big.js": "^6.1.1",
"toformat": "^2.0.0"
},
"devDependencies": {
"@swc/core": "^1.2.121",
"@swc/jest": "^0.2.15",
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"rollup": "^1.29.0",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.4"
}
}