@hyper.software/visitor-common-translations 1.1.535

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@hyper.software/visitor-common-translations",
3
+ "version": "1.1.535",
4
+ "author": "Raul Tomescu <tomescu.raul+hyper@gmail.com>",
5
+ "description": "Common translations",
6
+ "main": "lib/index.js",
7
+ "types": "./lib/index.d.ts",
8
+ "engines": {
9
+ "node": ">=12.22.0"
10
+ },
11
+ "files": [
12
+ "lib",
13
+ "es"
14
+ ],
15
+ "keywords": [
16
+ "Javascript",
17
+ "translations"
18
+ ],
19
+ "repository": {},
20
+ "license": "ISC",
21
+ "bugs": {},
22
+ "scripts": {
23
+ "lint": "./node_modules/tslint/bin/tslint './src/**/*.ts'",
24
+ "pretest": "npm run lint",
25
+ "test": "jest --coverage",
26
+ "test.watch": "npm run test -- --watch",
27
+ "translations-fix": "node ./node_modules/er-translations-fix/bin/translations-fix",
28
+ "prebuild": "rm -rf ./lib",
29
+ "build.copy-json": "for dest in lib; do rsync -amv --stats --include='*/' --include='*.json' --exclude='*' src/ $dest ; done",
30
+ "tsc": "tsc --declaration true && rm -rf .typescript-dist",
31
+ "add-translation": "node ./scripts/add-translation.js",
32
+ "build": "tsc --declaration true",
33
+ "postbuild": "npm run build.copy-json",
34
+ "publish-package": "git add . && git commit -m 'Publish package' && yarn translations-fix && tslint './src/**/*.ts?(x)' --fix && rm -rf ./lib && yarn build && npm version patch && npm publish"
35
+ },
36
+ "dependencies": {
37
+ "intl-format-cache": "^2.1.0",
38
+ "intl-messageformat": "^2.2.0"
39
+ },
40
+ "devDependencies": {
41
+ "@types/jest": "^21.1.0",
42
+ "@types/node": "^8.0.30",
43
+ "@usevisitor/tslint-config": "^1.1.3",
44
+ "cross-env": "^3.1.3",
45
+ "er-translations-fix": "^1.0.7",
46
+ "identity-obj-proxy": "^3.0.0",
47
+ "in-publish": "^2.0.0",
48
+ "jest": "^21.1.0",
49
+ "prettier": "^1.15.3",
50
+ "pretty-quick": "^1.8.0",
51
+ "rimraf": "^2.5.4",
52
+ "tslint": "^6.0.0",
53
+ "tslint-config-prettier": "^1.17.0",
54
+ "tslint-eslint-rules": "^5.4.0",
55
+ "tslint-plugin-prettier": "^2.0.1",
56
+ "tslint-react": "^3.6.0",
57
+ "typescript": "^3.2.2"
58
+ },
59
+ "jest": {
60
+ "transform": {
61
+ ".*": "<rootDir>/jest-preprocessor.js"
62
+ },
63
+ "testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|js)$",
64
+ "modulePaths": [
65
+ "./src"
66
+ ],
67
+ "moduleFileExtensions": [
68
+ "js",
69
+ "json",
70
+ "ts"
71
+ ],
72
+ "moduleDirectories": [
73
+ "node_modules",
74
+ "src"
75
+ ]
76
+ }
77
+ }