-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 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
{
"name": "babel-plugin-transform-react-jsx-data-source-code-location",
"version": "0.0.1",
"description": "Add data-__source-code-location to all JSX Elements.",
"keywords": [
"babel-plugin"
],
"homepage": "https://github.com/zjffun/babel-plugin-transform-react-jsx-data-source-code-location#readme",
"bugs": {
"url": "https://github.com/zjffun/babel-plugin-transform-react-jsx-data-source-code-location/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zjffun/babel-plugin-transform-react-jsx-data-source-code-location.git"
},
"license": "MIT",
"author": "Jufeng Zhang <zjffun@gmail.com>",
"type": "commonjs",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"scripts": {
"build": "rimraf lib && tsc",
"dev": "tsc -w",
"eslint-fix": "eslint --fix .",
"prepublishOnly": "npm run build && npm run test",
"prettier-fix": "prettier --write .",
"sort-package-json": "sort-package-json",
"test": "jest",
"update-snapshot": "jest -u"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.24.7"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/helper-plugin-test-runner": "^7.24.7",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@eslint/compat": "^1.1.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=6.9.0"
},
"publishConfig": {
"access": "public"
}
}