-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
76 lines (76 loc) · 1.81 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
72
73
74
75
76
{
"name": "@opencollective/taxes",
"version": "5.0.0",
"description": "Helpers to calculate taxes on Open Collective",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "rm -rf dist && tsc -d",
"lint": "eslint .",
"lint:check": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run build",
"prettier": "prettier \"**/*.@(js|ts|json|md)\" --ignore-path .gitignore",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"type:check": "tsc",
"depcheck": "npx depcheck ."
},
"engines": {
"node": ">18.0.0",
"npm": ">9.0.0"
},
"keywords": [
"tax",
"vat",
"open-collective"
],
"repository": {
"type": "git",
"url": "https://github.com/opencollective/opencollective-taxes.git"
},
"author": "Benjamin Piouffle",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash": "^4.14.161",
"eslint": "^9.14.0",
"eslint-config-opencollective": "5.1.0",
"globals": "^15.12.0",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"prettier": "3.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"jsvat-next": "3.0.4",
"lodash": "^4.17.20",
"sales-tax": "2.16.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/test/.*\\.(ts|tsx|js)$",
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/.history/"
]
},
"depcheck": {
"ignores": [
"jest-junit",
"@types/jest",
"typescript-eslint"
]
}
}