-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "@dintero/money",
"version": "0.0.0-development",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["CHANGELOG.md", "dist"],
"scripts": {
"test": "jest",
"clean": "rm -rf dist",
"check": "yarn -s run lint && yarn -s run test",
"build": "yarn -s run clean && yarn -s run check && tsc -p tsconfig.build.json",
"lint": "biome check --config-path ./biome.json",
"semantic-release": "semantic-release",
"prepublishOnly": "yarn -s run lint --write && yarn -s run build"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Dintero/money"
},
"homepage": "https://github.com/Dintero/money",
"bugs": {
"url": "https://github.com/Dintero/money/issues"
},
"author": "Magnus Tovslid",
"license": "MIT",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": ["**/__tests__/**/*.test.ts"]
},
"dependencies": {
"@types/big.js": "6.2.2",
"big.js": "^6.1.1",
"currency-codes": "^2.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"jest": "29.7.0",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
}
}