-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.67 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.67 KB
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
{
"name": "i18nize-react",
"bin": {
"i18nize-react": "src/index.js"
},
"version": "1.0.0",
"description": "A babel plugin cli to automatically internationalize any react app",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Ghost---Shadow/i18nize-react"
},
"keywords": [
"i18n",
"i18next",
"react",
"babel",
"babeljs",
"babel-plugin",
"cli"
],
"author": "Souradeep Nanda",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.0",
"@eslint/js": "^9.21.0",
"babel-jest": "^29.7.0",
"babel-plugin-tester": "^11.0.4",
"babel-test": "^0.2.4",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-file-snapshot": "^0.7.0",
"react-test-renderer": "^18.3.1"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.0",
"@babel/parser": "^7.26.0",
"@babel/plugin-transform-class-properties": "^7.25.0",
"@babel/traverse": "^7.26.0",
"babel-project-relative-import": "^2.0.1",
"lodash": "^4.17.21",
"randchinese": "^1.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/scratchpad",
"/test/walking_test"
],
"watchPathIgnorePatterns": [
"fixtures/*",
"__file_snapshots__",
"/test/walking_test"
]
}
}