-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·95 lines (95 loc) · 2.1 KB
/
package.json
File metadata and controls
executable file
·95 lines (95 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@elparking/babel-plugin-react-attr-replacement",
"description": "This plugin transforms a 'dataTest' attribute to a 'data-test' attribute in React components.",
"version": "0.2.2",
"main": "lib/index.js",
"author": "<antonio.juan@elparking.com>",
"license": "MIT",
"scripts": {
"lint": "eslint . --max-warnings 0",
"test": "jest",
"test:watch": "yarn run test -- --watch",
"check": "yarn run lint && yarn run test",
"build": "babel src --out-dir lib",
"version": "auto-changelog --package",
"inspect": "yarn audit --groups dependencies; [ $? -ge 8 ] && exit 1 || exit 0"
},
"files": [
"README.md",
"CHANGELOG.md",
"index.js",
"lib"
],
"eslintConfig": {
"rules": {
"prefer-destructuring": "off"
},
"plugins": [
"jest",
"import"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"jest": {
"cache": false,
"testRegex": "[\\w+]\\.test\\.js$",
"transform": {
"^.+\\.js$": "babel-jest"
},
"globals": {
"DEBUG": false
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"@babel/cli": "7.28.3",
"@babel/core": "7.28.5",
"@babel/eslint-parser": "7.28.5",
"auto-changelog": "^2.2.1",
"eslint": "^7.5.0",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-react": "^7.32.2",
"jest": "29.5.0",
"prettier": "2.3.1"
},
"dependencies": {
"@babel/plugin-transform-class-properties": "7.27.1",
"@babel/plugin-transform-object-rest-spread": "7.28.4",
"@babel/preset-env": "7.28.5",
"@babel/preset-react": "7.28.5"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElParking/babel-plugin-react-attr-replacement.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bugs": {
"url": "https://github.com/ElParking/babel-plugin-react-attr-replacement/issues"
},
"homepage": "https://github.com/ElParking/babel-plugin-react-attr-replacement#readme",
"keywords": [
"This",
"plugin",
"transforms",
"a",
"duplicate",
"a",
"attribute",
"in",
"React",
"components"
]
}