forked from formatjs/babel-plugin-react-intl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "@sleepwalker/babel-plugin-react-intl",
"version": "2.5.1",
"description": "Extracts string messages for translation from modules that use React Intl.",
"repository": {
"type": "git",
"url": "git+https://github.com/SleepWalker/babel-plugin-react-intl.git"
},
"license": "BSD-3-Clause",
"main": "lib/index.js",
"author": "Eric Ferraiuolo <[email protected]>",
"dependencies": {
"babel-runtime": "^6.2.0",
"intl-messageformat-parser": "^1.2.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-plugin-espower": "^2.3.1",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.6",
"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"
},
"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/SleepWalker/babel-plugin-react-intl#readme"
}