forked from akameco/extract-react-intl-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.67 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
{
"name": "extract-react-intl-messages",
"version": "2.3.3",
"description": "Extract react-intl messages",
"license": "MIT",
"repository": "akameco/extract-react-intl-messages",
"author": {
"name": "akameco",
"email": "[email protected]",
"url": "https://akameco.github.io"
},
"engines": {
"node": ">=8"
},
"main": "dist/index.js",
"scripts": {
"add-contributor": "all-contributors add",
"fmt": "prettier --write '**/*.{json,js,md}'",
"example": "./cli.js -l=en,ja -o example/i18n -d en --extractFromFormatMessageCall=true 'example/**/*.{js,tsx}'",
"prepublish": "npm run build",
"build": "tsc",
"lint": "eslint src/**/*.ts --fix --cache",
"test": "npm run lint && jest"
},
"bin": {
"extract-react-intl-messages": "cli.js",
"extract-messages": "cli.js"
},
"files": [
"dist",
"cli.js"
],
"keywords": [
"react",
"i18n",
"intl",
"react-intl",
"extract",
"json",
"messages"
],
"dependencies": {
"@babel/core": "^7.5.5",
"babel-plugin-react-intl": "^4.1.16",
"flat": "^4.1.0",
"glob": "^7.1.4",
"js-yaml": "^3.13.1",
"load-json-file": "^6.2.0",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2",
"lodash.pick": "^4.4.0",
"meow": "^5.0.0",
"mkdirp": "^0.5.1",
"pify": "^4.0.1",
"read-babelrc-up": "^0.4.0",
"sort-keys": "^4.0.0",
"write-json-file": "^4.1.1"
},
"devDependencies": {
"@akameco/tsconfig": "^0.3.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/flat": "^0.0.28",
"@types/jest": "^24.0.18",
"@types/js-yaml": "^3.12.1",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.mergewith": "^4.6.6",
"@types/lodash.pick": "^4.4.6",
"@types/mkdirp": "^0.5.2",
"@types/pify": "^3.0.2",
"@types/temp-write": "^4.0.0",
"@types/tempy": "^0.3.0",
"all-contributors-cli": "^6.8.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-plugin-react-intl-auto": "^2.2.0",
"eslint": "^6.3.0",
"eslint-config-precure": "^5.0.2",
"husky": "^3.0.5",
"jest": "^24.8.0",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-intl": "^3.2.0",
"temp-write": "^4.0.0",
"tempy": "^0.3.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}