generated from Resnovas/workflow-mastermind
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.39 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
{
"name": "@videndum/utilities",
"version": "1.0.0-alpha.18",
"description": "Utilities used by Videndum Studios to enable Logging, i18n, and much more",
"repository": {
"type": "git",
"url": "https://github.com/Videndum/utilities"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Videndum/utilities/issues"
},
"author": "Videndum",
"contributors": [
"TGTGamer"
],
"license": "",
"private": false,
"main": "lib/index.js",
"directories": {
"lib": "lib",
"doc": "docs",
"locales": "locales",
"test": "__tests__",
"src": "src"
},
"files": [
"__tests__",
"docs",
"lib",
"locales"
],
"keywords": [],
"scripts": {
"build": "tsc",
"check:i18n": "npm run i18n -- --check",
"dev:format": "prettier --config .prettier.json --write .",
"dev:format-check": "prettier --config .prettier.json --check .",
"dev:i18n": "sync-i18n --files './locales/*.json' --primary en --languages es ja fr it en zh ko en-GB en-US de-CH zh-Hant zh-Hans --space 2 --le LF --fn true -e true",
"dev:run": "yarn dev:i18n && npm run dev:tsc && npm run dev:format && node lib/index.js",
"dev:test": "jest --json --outputFile=result.json --testLocationInResults",
"dev:tsc": "tsc -p tsconfig.json",
"release": "yarn version --prerelease --no-git-tag-version && yarn publish",
"run": "node lib/index.js",
"test": "jest"
},
"dependencies": {
"@google-cloud/logging": "^9.3.0",
"@sentry/integrations": "^5.27.6",
"@sentry/node": "^7.13.0",
"@sentry/tracing": "^7.13.0",
"app-root-path": "^3.0.0",
"chalk": "^4.1.0",
"html-entities": "^2.3.2",
"i18next": "^19.5.2",
"i18next-chained-backend": "^2.0.1",
"i18next-fs-backend": "^1.0.7",
"i18next-intervalplural-postprocessor": "^3.0.0",
"i18next-react-postprocessor": "^3.0.5"
},
"devDependencies": {
"@overnightjs/core": "^1.7.4",
"@types/app-root-path": "^1.2.4",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.14",
"eslint-plugin-i18next": "^4.5.0",
"i18next-json-sync": "^2.3.1",
"jest": "^26.6.1",
"jest-circus": "^26.6.3",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^3.1.1",
"prettier-plugin-pkg": "^0.17.1",
"ts-jest": "^26.4.3",
"tslib": "^2.0.3",
"tslint": "^6.1.0",
"typescript": "^3.9.5"
}
}