forked from GertjanReynaert/react-intl-translations-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "@rohea/react-intl-translations-manager",
"version": "4.0.2",
"description": "Manage all translations based on the extracted messages of the babel-plugin-react-intl",
"main": "./dist/index.js",
"scripts": {
"prepublish": "npm run build",
"babel": "node_modules/babel-cli/bin/babel.js src --out-dir dist",
"test:watch": "npm test -- --watch",
"build": "npm run babel",
"eslint": "node_modules/eslint/bin/eslint.js --fix ./src ./test"
},
"repository": {
"type": "git",
"url": "https://github.com/Rohea/react-intl-translations-manager.git"
},
"keywords": [
"react",
"intl",
"translations",
"manager",
"management",
"managing",
"i18n"
],
"license": "MIT",
"homepage": "https://github.com/Rohea/react-intl-translations-manager#readme",
"dependencies": {
"chalk": "^1.1.3",
"glob": "^7.0.3",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.0.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"parse-github-repo-url": "^1.4.0"
}
}