forked from laget-se/react-gettext-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "react-gettext-parser",
"version": "1.13.0",
"description": "A gettext parser for React. Spits out .pot files!",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"main": "lib/index.js",
"bin": "lib/bin.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha --compilers js:@babel/register tests/tests.js",
"lint": "eslint src tests",
"clean": "rimraf lib",
"dev": "babel -w --out-dir lib src",
"prebuild": "npm run clean",
"build": "babel --out-dir lib src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laget-se/react-gettext-parser.git"
},
"keywords": [
"gettext",
"parser",
"react",
"jsx",
"translation",
"localization",
"internationalization",
"l10n",
"i18n"
],
"author": "Alexander Wallin <[email protected]> (http://alexanderwallin.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/laget-se/react-gettext-parser/issues"
},
"homepage": "https://github.com/laget-se/react-gettext-parser#readme",
"dependencies": {
"@babel/parser": "^7.3.4",
"@babel/traverse": "^7.3.4",
"colors": "^1.1.2",
"convert-newline": "0.0.5",
"gettext-parser": "^1.1.2",
"glob-all": "^3.0.3",
"lodash.curry": "^4.0.1",
"lodash.groupby": "^4.3.0",
"lodash.uniq": "^4.2.1",
"plugin-error": "^1.0.1",
"through2": "^2.0.1",
"vinyl": "^2.2.0",
"yargs": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.44",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0-beta.44",
"babel-eslint": "^10.0.2",
"chai": "^3.5.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"mocha": "^5.2.0",
"prettier": "^1.18.2",
"rimraf": "^2.5.2",
"sinon": "^1.17.3"
}
}