-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "@travelport-czech/ss-translations-tools",
"version": "1.0.25",
"description": "Export and import tools for ss-translations",
"author": "Michal Bureš",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "tsc --noEmit --project tsconfig.json && eslint --ext .ts ./src",
"build": "tsc --project tsconfig.json",
"autofix": "prettier **/* --write",
"test": "jest ./tests"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Travelport-Czech/ss-translations-tools.git"
},
"bugs": {
"url": "https://github.com/Travelport-Czech/ss-translations-tools/issues"
},
"homepage": "https://github.com/Travelport-Czech/ss-translations-tools#readme",
"dependencies": {
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"devDependencies": {
"@types/jest": "29.5.7",
"@types/node": "20.8.10",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-typescript": "3.0.0",
"eslint-plugin-prettier": "5.0.1",
"jest": "29.7.0",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}