-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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": "@half0wl/money",
"version": "1.0.2",
"description": "A TypeScript/JavaScript library to make working with monetary values easier and safer.",
"repository": "half0wl/ts-money",
"author": "Ray Chen <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "types/index.d.ts",
"keywords": [
"money",
"fowler",
"fowler money pattern",
"money object",
"money value object",
"currency",
"currencies",
"money dto",
"ts money",
"js money"
],
"files": [
"dist",
"types"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "rm -rf dist/ types/ tsconfig.build.tsbuildinfo tsconfig.tsbuildinfo",
"clean-docs": "rm -rf docs/",
"gen-docs": "typedoc lib --tsconfig tsconfig.build.json --theme default",
"gen-currency-data": "ts-node tools/GenerateCurrencyData.ts resources/iso_currency_data.json lib/Currency/ISOCurrencies.ts",
"test": "ts-mocha --paths -p tsconfig.json tests/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.10",
"@types/prettier": "^2.7.1",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"prettier": "^2.8.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
}
}