-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "babel-plugin-jsx-simple",
"version": "1.6.0",
"description": "Babel plugin for simple JSX to JS transformation",
"main": "index.js",
"unpkg": "dist/babel-plugin-jsx-simple.min.js",
"files": [
"index.js",
"dist"
],
"scripts": {
"lint": "eslint index.js",
"test": "npm run lint",
"exmaple": "cd example && babel example.js -o example.build.js --watch",
"exmaple-arrow": "cd exmaple-arrow && babel example.js -o example.build.js --watch",
"build": "babel index.js -o dist/babel-plugin-jsx-simple.min.js",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hrgdavor/babel-plugin-jsx-simple.git"
},
"keywords": [
"babel",
"jsx"
],
"author": "Davor hrg",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT"
}
],
"bugs": {
"url": "https://hrgdavor/babel-plugin-jsx-simple/issues"
},
"homepage": "https://hrgdavor/babel-plugin-jsx-simple#readme",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/register": "^7.18.9",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^5.12.0",
"mocha": "^10.0.0",
"webpack": "^5.74.0"
}
}