forked from laget-se/react-gettext-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
{
"name": "react-gettext-parser",
"version": "1.1.2",
"description": "A gettext parser for React. Spits out .pot files!",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"main": "lib/index.js",
"bin": "bin/react-gettext-parser.js",
"files": [
"bin",
"lib"
],
"scripts": {
"test": "mocha --compilers js:babel-core/register tests/tests.js",
"lint": "eslint src",
"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/alexanderwallin/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/alexanderwallin/react-gettext-parser/issues"
},
"homepage": "https://github.com/alexanderwallin/react-gettext-parser#readme",
"dependencies": {
"babel-traverse": "^6.7.4",
"babylon": "^6.7.0",
"colors": "^1.1.2",
"deep-extend": "^0.4.1",
"gettext-parser": "^1.1.2",
"glob-all": "^3.0.3",
"gulp-util": "^3.0.7",
"lodash.curry": "^4.0.1",
"lodash.groupby": "^4.3.0",
"lodash.uniq": "^4.2.1",
"through2": "^2.0.1",
"yargs": "^4.4.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^5.0.1",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"sinon": "^1.17.3"
}
}