-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
103 lines (103 loc) · 2.55 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
{
"name": "extract-react-intl-messages",
"version": "4.1.1",
"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": ">=10"
},
"main": "dist/index.js",
"scripts": {
"fmt": "prettier --write .",
"example": "./cli.js -l=en,ja -o example/i18n -d en 'example/**/*.{js,tsx}'",
"example:yaml": "./cli.js -l=en,ja -f=yaml -o example/i18n -d en 'example/**/*.{js,tsx}'",
"prepublish": "npm run build",
"build": "tsc",
"lint": "eslint src/**/*.ts --fix --cache",
"test": "jest"
},
"bin": {
"extract-react-intl-messages": "dist/cli.js",
"extract-messages": "dist/cli.js"
},
"files": [
"dist"
],
"keywords": [
"react",
"i18n",
"intl",
"react-intl",
"extract",
"json",
"messages"
],
"dependencies": {
"@babel/core": "^7.9.0",
"babel-plugin-react-intl": "^7.0.0",
"flat": "^5.0.0",
"glob": "^7.1.6",
"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": "^6.1.0",
"mkdirp": "^1.0.3",
"pify": "^5.0.0",
"read-babelrc-up": "^1.1.0",
"sort-keys": "^4.0.0",
"write-json-file": "^4.3.0"
},
"devDependencies": {
"@akameco/tsconfig": "^0.4.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@types/flat": "^5.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.4",
"@types/js-yaml": "^3.12.2",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.mergewith": "^4.6.6",
"@types/lodash.pick": "^4.4.6",
"@types/mkdirp": "^1.0.0",
"@types/pify": "^3.0.2",
"@types/temp-write": "^4.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-react-intl-auto": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-precure": "^5.3.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-intl": "^4.2.2",
"temp-write": "^4.0.0",
"tempy": "^0.5.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"eslint --fix"
],
"*.{js,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}