-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "babel-plugin-transform-jsx-classname-components",
"version": "0.0.2",
"description": "It allows you to specify inner components via class names",
"main": "dist/index.js",
"author": "Eugene Zhlobo <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"build": "babel src --out-dir dist --ignore src/__tests__",
"prepublish": "yarn build"
},
"files": [
"README.md",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/ezhlobo/babel-plugin-transform-jsx-classname-components"
},
"dependencies": {
"babel-plugin-syntax-jsx": "^6.18.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-preset-env": "^1.7.0",
"common-prefix": "^1.1.0",
"eslint": "^6.0.1",
"eslint-config-datarockets-base": "^0.0.4-6",
"eslint-plugin-import": "^2.18.0",
"jest": "^24.8.0"
},
"eslintConfig": {
"extends": "datarockets-base"
}
}