UNPKG

1.24 kBJSONView Raw
1{
2 "name": "babel-plugin-react-require",
3 "version": "4.0.0",
4 "description": "Babel plugin that adds React import declaration if file contains JSX tags.",
5 "keywords": [
6 "babel",
7 "babel-plugin",
8 "react",
9 "jsx"
10 ],
11 "homepage": "https://github.com/vslinko/babel-plugin-react-require",
12 "bugs": {
13 "url": "https://github.com/vslinko/babel-plugin-react-require/issues",
14 "email": "me@vslinko.com"
15 },
16 "license": "MIT",
17 "author": {
18 "name": "Vyacheslav Slinko",
19 "email": "me@vslinko.com",
20 "url": "https://vslinko.com/"
21 },
22 "main": "lib",
23 "repository": {
24 "type": "git",
25 "url": "vslinko/babel-plugin-react-require"
26 },
27 "scripts": {
28 "clean": "rimraf coverage",
29 "build-examples": "babel examples -d built-examples",
30 "lint": "prettier --check lib test && eslint lib test",
31 "prepare": "npm run clean && npm run build-examples",
32 "test": "jest",
33 "test-coverage": "jest --coverage"
34 },
35 "devDependencies": {
36 "@babel/cli": "^7.21.5",
37 "@babel/core": "^7.21.8",
38 "@babel/plugin-syntax-jsx": "^7.21.4",
39 "babel-plugin-inline-react-svg": "^2.0.2",
40 "eslint": "^8.40.0",
41 "jest": "^29.5.0",
42 "prettier": "^2.8.8",
43 "rimraf": "^5.0.0"
44 }
45}