-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "@equisoft/tax-ca",
"version": "0.0.1",
"description": "Canadian tax data and calculation functions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
{
"name": "Kevin Doucet",
"email": "[email protected]"
},
{
"name": "Toby Daigle",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/kronostechnologies/tax-ca"
},
"license": "LGPL-3.0-only",
"keywords": [
"tax",
"canada",
"data"
],
"scripts": {
"build": "tsc",
"eslint": "eslint ./src ./tests/",
"eslint:ci": "yarn eslint",
"prepublishOnly": "rm -rf dist/ && yarn build",
"test": "NODE_ENV=test jest --config=tests/jest.config.js",
"test:ci": "NODE_ENV=test yarn test --runInBand --ci",
"watch": "tsc --watch"
},
"devDependencies": {
"@babel/core": "7.26.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.26.0",
"@equisoft/eslint-config": "3.0.8",
"@equisoft/eslint-config-typescript": "3.0.8",
"@equisoft/jest-utils": "1.6.0",
"@equisoft/typescript-config": "2.0.0",
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "29.5.14",
"@types/node": "22.13.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.8.3",
"eslint-plugin-import": "2.31.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"ts-jest": "29.2.6",
"typescript": "5.7.3",
"yargs": "17.7.2"
},
"resolutions": {
"@babel/core/json5": "^2.2.2",
"ts-jest/json5": "^2.2.2"
},
"packageManager": "[email protected]"
}