-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.07 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
{
"name": "jsx2string",
"version": "0.1.4",
"description": "Transpile JSX to plain javascript strings, without React or other runtime libraries.",
"author": "ziven27",
"main": "index.js",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/ziven27/jsx2string.git"
},
"bugs": {
"url": "https://github.com/ziven27/jsx2string/issues"
},
"homepage": "https://github.com/ziven27/jsx2string#readme",
"scripts": {
"babel": "./node_modules/.bin/babel demo/Home.jsx --out-dir dist",
"demo": "npm run build && webpack --config ./webpack.demo.js && node dist/App.js",
"build": "./node_modules/.bin/babel ./src --out-dir ./",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1"
}
}