-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"version": "1.0.3",
"name": "babel-plugin-react-append-displayname",
"repository": "https://github.com/sabarnix/babel-plugin-react-append-displayName.git",
"description": "Add component name as a className of first component in the render tree",
"author": "Sabarni Das <sabarni.d@media.net>",
"main": "lib/index.js",
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/preset-env": "^7.24.5",
"@babel/register": "^7.23.7",
"mocha": "^3.1.2"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"example": "npm run build && babel example/input.js -o example/output.js",
"test": "mocha --compilers js:@babel/register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"babel",
"plugin",
"styled-components",
"babel-plugin",
"react",
"class"
],
"dependencies": {
"babel-preset-env": "^1.7.0"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}