-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 739 Bytes
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
{
"name": "thai-tax",
"version": "1.0.0",
"description": "Thai personal income tax utility functions.",
"main": "index.js",
"repository": "git@github.com:OozyGrub/thai-tax.git",
"author": "Krit Kruaykitanon <krit.kruaykitanon@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.2",
"@types/lodash": "^4.14.186",
"@types/node": "^18.8.2",
"babel-jest": "^29.1.2",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"scripts": {
"test": "jest --watchAll --coverage"
}
}