forked from oliviertassinari/i18n-extract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "i18n-extract",
"version": "0.5.0",
"description": "Manage localization of ES6 code with static analysis",
"main": "lib/index.js",
"scripts": {
"lint": "eslint . && echo \"eslint: no lint errors\"",
"test:unit": "babel-node test/unit.js",
"test": "npm run lint && npm run test:unit",
"build": "rm -rf lib && mkdir lib && babel src --out-dir lib",
"version": "npm run build && pkgfiles"
},
"repository": {
"type": "git",
"url": "https://github.com/oliviertassinari/i18n-extract.git"
},
"keywords": [
"i18n",
"localization",
"translation",
"ES6",
"static analysis"
],
"homepage": "https://github.com/oliviertassinari/i18n-extract",
"author": "Olivier Tassinari <[email protected]> (https://github.com/oliviertassinari)",
"license": "MIT",
"dependencies": {
"babel-traverse": "^6.16.0",
"babylon": "^6.11.5",
"gettext-parser": "^1.2.0",
"glob": "^7.1.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"chai": "^4.1.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.6.0",
"mocha": "^3.1.2",
"pkgfiles": "^2.3.0"
},
"bugs": {
"url": "https://github.com/oliviertassinari/i18n-extract/issues"
}
}