-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.62 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
{
"name": "babel-plugin-react-intl-messages-generator",
"version": "0.3.0",
"description": "Extracts explicit texts from react components and generate a componentNameMessages.js files",
"repository": {
"type": "git",
"url": "git+https://github.com/p10ns11y/babel-plugin-react-intl-messages-generator.git"
},
"license": "BSD-3-Clause",
"main": "lib/index.js",
"type": "module",
"author": "Peramanathan Sathyamoorthy <[email protected]>",
"dependencies": {
"babel-runtime": "^6.26.0",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-espower": "^3.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"mocha": "^10.2.0",
"power-assert": "^1.6.1",
"rimraf": "^5.0.5"
},
"scripts": {
"lint": "eslint src/",
"clean": "rimraf lib/",
"test": "cross-env NODE_ENV=test mocha",
"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",
"defineMessages"
],
"bugs": {
"url": "https://github.com/p10ns11y/babel-plugin-react-intl-messages-generator/issues"
},
"homepage": "https://github.com/p10ns11y/babel-plugin-react-intl-messages-generator#readme"
}