-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
32 lines (32 loc) · 953 Bytes
/
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
{
"name": "@vimeo/babel-plugin-transform-i18n",
"version": "1.0.1",
"description": "A Babel transform plugin to replace strings with their translations.",
"license": "MIT",
"author": "Brad Dougherty <[email protected]>",
"contributors": [
"Brad Dougherty <[email protected]> (https://brad.is)"
],
"main": "index.js",
"repository": "vimeo/babel-plugin-transform-i18n",
"bugs": "https://github.com/vimeo/babel-plugin-transform-i18n/issues",
"keywords": [
"babel",
"babel-plugin",
"i18n"
],
"scripts": {
"lint": "eslint index.js test.js",
"pretest": "npm run lint",
"test": "nyc --cache --reporter=text --reporter=html ava",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"devDependencies": {
"@vimeo/eslint-config-player": "^4.0.1",
"ava": "^0.16.0",
"babel-core": "^6.13.2",
"codecov": "^1.0.1",
"eslint": "^3.2.2",
"nyc": "^7.1.0"
}
}