forked from formatjs/babel-plugin-react-intl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.6 KB
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
{
"name": "babel-plugin-react-intl",
"version": "3.0.1",
"description": "Extracts string messages for translation from modules that use React Intl.",
"repository": {
"type": "git",
"url": "git+https://github.com/yahoo/babel-plugin-react-intl.git"
},
"license": "BSD-3-Clause",
"main": "lib/index.js",
"author": "Eric Ferraiuolo <edf@ericf.me>",
"dependencies": {
"@babel/runtime": "^7.0.0",
"intl-messageformat-parser": "^1.2.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-espower": "^3.0.0",
"cross-env": "^3.1.4",
"eslint": "^3.14.1",
"eslint-plugin-react": "^6.1.2",
"mocha": "^3.0.2",
"power-assert": "^1.4.1",
"rimraf": "^2.4.3",
"uuid": "^3.3.2"
},
"scripts": {
"lint": "eslint src/",
"clean": "rimraf lib/",
"test": "cross-env NODE_ENV=test mocha --compilers js:@babel/register",
"build": "babel src/ --out-dir lib/",
"build:fixtures": "babel-node ./scripts/build-fixtures.js",
"preversion": "npm run lint && npm run clean && npm run build",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"babel-plugin",
"react-intl"
],
"bugs": {
"url": "https://github.com/yahoo/babel-plugin-react-intl/issues"
},
"homepage": "https://github.com/yahoo/babel-plugin-react-intl#readme"
}