forked from gilbsgilbs/babel-plugin-i18next-extract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.85 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
{
"name": "babel-plugin-i18next-extract",
"version": "0.1.0",
"description": "Statically extract translation keys from i18next application.",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gilbsgilbs/babel-plugin-i18next-extract.git"
},
"keywords": [
"babel-plugin",
"i18next",
"i18n",
"translation",
"react",
"react-i18next",
"internationalization",
"localization"
],
"homepage": "https://i18next-extract.netlify.com/",
"bugs": {
"url": "https://github.com/gilbsgilbs/babel-plugin-i18next-extract/issues"
},
"author": "Gilbert Gilb's <[email protected]>",
"license": "MIT",
"main": "./index.js",
"module": "./es/index.js",
"types": "./index.d.ts",
"files": [
"*"
],
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/types": "7.9.6",
"deepmerge": "^4.2.2",
"i18next": "^19.8.3",
"json-stable-stringify": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/babel__core": "^7.1.12",
"@types/fs-extra": "^9.0.3",
"@types/jest": "^26.0.15",
"@types/jest-expect-message": "^1.0.3",
"@types/json-stable-stringify": "^1.0.32",
"@types/node": "^14.14.7",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"copyfiles": "^2.4.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"jest": "^26.6.3",
"jest-expect-message": "^1.0.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.0",
"rollup": "^2.33.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"scripts": {
"lint": "eslint --ext=.ts,.js,.tsx,.jsx src docs tests rollup.config.js",
"types": "tsc --noEmit",
"build": "${npm_execpath} run build:clean && ${npm_execpath} run build:skeleton && ${npm_execpath} run build:types && ${npm_execpath} run build:js",
"build:clean": "rimraf lib/",
"build:skeleton": "copyfiles package.json README.md LICENSE lib/",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:js": "rollup -c",
"test": "jest",
"check": "${npm_execpath} run lint && ${npm_execpath} run types && ${npm_execpath} run test",
"release": "${npm_execpath} install && ${npm_execpath} run check && ${npm_execpath} run build && cd lib/ && ${npm_execpath} publish --no-git-tag-version"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"coverageDirectory": "./coverage/",
"setupFilesAfterEnv": [
"jest-expect-message"
]
}
}