-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@travelport-czech/ss-translations",
"version": "1.1.19",
"description": "Strict and Simple Translation Solution for typescript",
"author": "Michal Bureš",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "tsc --project tsconfig.json && eslint --ext .ts ./src",
"build": "tsc --project tsconfig.json",
"autofix": "prettier **/* --write",
"test": "jest ./tests"
},
"eslintConfig": {
"env": {
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"plugins": [
"@typescript-eslint"
],
"rules": {},
"overrides": [
{
"files": [
"*.ts",
"*.tsx"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
2,
{
"args": "none"
}
]
}
}
]
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"endOfLine": "lf",
"printWidth": 120,
"singleQuote": true
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Travelport-Czech/ss-translations.git"
},
"bugs": {
"url": "https://github.com/Travelport-Czech/ss-translations/issues"
},
"homepage": "https://github.com/Travelport-Czech/ss-translations#readme",
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^13.1.8",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"ts-jest": "^26.4.4",
"ts-node": "^8.6.2",
"typescript": "^4.1.3"
}
}