-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 829 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 829 Bytes
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
{
"name": "babel-plugin-jsx-auto-test-id",
"version": "1.1.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "jest --no-cache"
},
"keywords": [
"babel",
"data-test",
"automation",
"e2e tests"
],
"author": "Michell Ocaña",
"license": "MIT",
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/michellocana/babel-plugin-jsx-auto-test-id"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@types/jest": "^24.0.20",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"jest": "^29.5.0",
"react": "^16.11.0",
"react-test-renderer": "^16.11.0"
}
}