-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "@cashmoney/core",
"description": "Everything you need to handle monetary values sensibly in JS.",
"version": "1.2.1",
"license": "MIT",
"author": "Matthew Gamble <[email protected]>",
"dependencies": {
"@cashmoney/iso-currency-contracts": "^1.0.3",
"@cashmoney/number": "^2.4.4",
"bignumber.js": "^9.0.2"
},
"devDependencies": {
"@cashmoney/iso-currencies": "^1.3.0",
"@types/node": "^16.11.26",
"alsatian": "^3.2.1",
"esm": "^3.2.25",
"ts-node": "^10.6.0",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
},
"scripts": {
"build": "tsc --module esnext --noEmitOnError",
"test": "node --require esm run-tests.js 'tests/**/*.test.ts'",
"gen-money-factories": "ts-node scripts/generate-money-factories.ts node_modules/@cashmoney/iso-currencies/resources/current.json"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"tsconfig.json"
],
"sideEffects": false,
"homepage": "https://github.com/cashmoneyjs/cashmoney",
"repository": {
"type": "git",
"url": "https://github.com/cashmoneyjs/cashmoney.git"
},
"keywords": [
"cashmoney",
"money",
"currency",
"moneyphp"
],
"packageManager": "[email protected]"
}