forked from peakchen90/babel-plugin-react-directives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.18 KB
/
package.json
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
{
"name": "@minar-kotonoha/babel-plugin-react-directives",
"version": "1.2.3",
"description": "A babel plugin that provides some directives for react(any JSX), similar to directive of vue.",
"main": "src/index.js",
"files": [
"src",
"runtime",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"test:clear-cache": "jest --clearCache",
"prepublishOnly": "npm run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "chengzhuo5",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chengzhuo5/babel-plugin-react-directives"
},
"bugs": {
"url": "https://github.com/chengzhuo5/babel-plugin-react-directives/issues"
},
"keywords": [
"babel-plugin",
"react-directive",
"jsx-directive",
"jsx-plus",
"directive",
"react",
"vue",
"x-if",
"x-for",
"v-if",
"v-for"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.11.6",
"@babel/types": "^7.11.5",
"ajv": "^6.12.4",
"ajv-errors": "^1.0.1",
"chalk": "^4.1.0",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@minar-kotonoha/eslint-plugin-react-directives": "^1.0.3",
"@types/jest": "^26.0.13",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"common-tags": "^1.8.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"invariant": "^2.2.4",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"lodash.mergewith": "^4.6.2",
"path-exists": "^4.0.0",
"prettier": "^1.18.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"strip-indent": "^3.0.0"
}
}