-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "international-fees",
"version": "1.2.0",
"description": "A library to make easier mapper international taxes",
"author": "Marcus Silva <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mvfsillva/international-fees.git"
},
"bugs": {
"url": "https://github.com/mvfsillva/international-fees/issues"
},
"homepage": "https://github.com/mvfsillva/international-fees#readme",
"keywords": [
"fee",
"fees",
"fees",
"tax",
"international",
"canada",
"can",
"ca",
"usa",
"eua",
"united states",
"library",
"lib"
],
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc",
"lint": "xo --quiet",
"precommit": "lint-staged",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@sindresorhus/tsconfig": "3.0.1",
"@types/jest": "29.2.4",
"@types/node": "18.11.11",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"prettier": "2.8.0",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"typescript": "4.9.3",
"xo": "0.53.1"
},
"xo": {
"extends": [
"prettier"
]
},
"lint-staged": {
"*.js": [
"yarn lint",
"yarn test",
"prettier --semi false --single-quote --trailing-comma --write",
"git add"
]
}
}