-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "babel-gettext-extractor",
"version": "4.1.3",
"description": " Extract gettext string with babel",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint *.js **/*.js",
"test-ci": "npm run clean && npm run test && npm run lint",
"clean": "rimraf 'test/*.po'"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/getsentry/babel-gettext-extractor.git"
},
"keywords": [
"babel",
"gettext",
"plugin",
"i18n"
],
"author": "getsentry",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/getsentry/babel-gettext-extractor/issues"
},
"homepage": "/~https://github.com/getsentry/babel-gettext-extractor",
"dependencies": {
"@babel/core": "^7.0.0",
"gettext-parser": "1.4.0"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.0",
"mocha": "^2.3.4",
"rimraf": "^2.6.1"
}
}