forked from i18next/i18next-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.17 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "i18next-scanner",
"version": "4.5.0",
"description": "Scan your code, extract translation keys/values, and merge them into i18n resource files.",
"homepage": "https://github.com/i18next/i18next-scanner",
"author": "Cheton Wu <[email protected]>",
"contributors": [
{
"name": "Cheton Wu",
"email": "[email protected]",
"url": "https://github.com/cheton"
}
],
"bin": {
"i18next-scanner": "./bin/cli.js"
},
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm run eslint && npm run build && npm test",
"build": "babel ./src --out-dir ./lib",
"clean": "del lib .nyc_output",
"eslint": "eslint ./src",
"eslint-fix": "eslint --fix ./src ./test/*.js",
"test": "jest --no-cache"
},
"repository": {
"type": "git",
"url": "[email protected]:i18next/i18next-scanner.git"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"keywords": [
"i18n",
"i18next",
"gruntplugin",
"gulpplugin",
"gettext",
"hash",
"sha1",
"crc32",
"md5"
],
"files": [
"bin",
"lib",
"tasks"
],
"dependencies": {
"acorn": "^8.0.4",
"acorn-jsx": "^5.3.1",
"acorn-stage3": "^4.0.0",
"acorn-walk": "^8.0.0",
"chalk": "^4.1.0",
"clone-deep": "^4.0.0",
"commander": "^9.0.0",
"deepmerge": "^4.0.0",
"ensure-type": "^1.5.0",
"eol": "^0.9.1",
"esprima-next": "^5.7.0",
"gulp-sort": "^2.0.0",
"i18next": "*",
"lodash": "^4.0.0",
"parse5": "^6.0.0",
"sortobject": "^4.0.0",
"through2": "^4.0.0",
"vinyl": "^3.0.0",
"vinyl-fs": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/register": "^7.17.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@trendmicro/babel-config": "^1.0.2",
"codecov": "^3.8.3",
"core-js": "^3.23.1",
"del-cli": "^4.0.1",
"eslint": "^8.18.0",
"eslint-config-trendmicro": "^3.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "~26.5.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"gulp": "^4.0.2",
"gulp-tap": "^2.0.0",
"gulp-util": "^3.0.8",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-extended": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-i18next": "^11.12.0",
"sha1": "^1.1.1",
"text-table": "^0.2.0"
},
"jest": {
"setupFiles": [],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"unmockedModulePathPatterns": [
"react"
],
"testMatch": [
"<rootDir>/test/**/?(*.)(spec|test).js?(x)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"!**/node_modules/**",
"!**/test/**"
],
"coverageReporters": [
"lcov",
"text",
"html"
],
"testPathIgnorePatterns": [],
"testTimeout": 30000,
"testEnvironment": "node"
}
}