-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.32 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.32 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
{
"name": "babel-plugin-jsx-wrapper",
"description": "Automatic observe jsx arrow functions",
"version": "1.0.0",
"main": "./src/plugin.js",
"files": [
"src"
],
"scripts": {
"test": "jest",
"test:reset-cache": "jest --clearCache",
"format": "prettier --write src tests"
},
"dependencies": {
"matcher": "3.0.0"
},
"peerDependencies": {
"@babel/core": "*"
},
"devDependencies": {
"@babel/core": "7.12.10",
"jest": "26.6.3",
"prettier": "2.2.1"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/re-js/babel-plugin-jsx-wrapper.git"
},
"keywords": [
"remini",
"remini component",
"wrapper",
"auto observe",
"auto wrap",
"observe",
"observer",
"babel plugin",
"babel",
"transform",
"jsx",
"react",
"mobx",
"mobx react",
"mobx react lite",
"mobx auto observer",
"mobx react automatic observer"
],
"author": "Slava Bereza <mail@betula.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/re-js/babel-plugin-jsx-wrapper/issues"
},
"homepage": "https://github.com/re-js/babel-plugin-jsx-wrapper#readme"
}