-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "babel-plugin-mickey-i18n",
"version": "1.0.2-beta.2",
"description": "Extract i18n message files and replace text with i18n-formatter.",
"main": "./lib/index.js",
"keywords": [
"mickey",
"i18n",
"auto",
"babel",
"plugin",
"babel-plugin"
],
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mickeyjsx/babel-plugin-mickey-i18n.git"
},
"bugs": {
"url": "https://github.com/mickeyjsx/babel-plugin-mickey-i18n/issues"
},
"homepage": "https://github.com/mickeyjsx/babel-plugin-mickey-i18n#readme",
"files": [
"lib"
],
"scripts": {
"lint": "eslint --ext .js,.jsx src",
"build": "rimraf lib && babel src --out-dir lib",
"prebuild": "npm run lint",
"prepare": "npm run build",
"precommit": "npm run lint"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.55",
"@babel/core": "^7.0.0-beta.55",
"@babel/preset-env": "^7.0.0-beta.55",
"babel-eslint": "^8.2.6",
"babel-plugin-add-module-exports": "^0.2.1",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"react-intl": "*",
"mickey-i18n": "*"
},
"dependencies": {
"@sindresorhus/string-hash": "^1.0.0",
"fs-extra": "^7.0.0",
"lodash.isfunction": "^3.0.9",
"lodash.isregexp": "^4.0.1"
}
}