-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1005 Bytes
/
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
{
"name": "@maelstrom-cms/react-mount",
"description": "Easily mount react components from your HTML with prop support",
"version": "1.0.14",
"author": "Owen Melbourne <[email protected]>",
"bugs": {
"url": "https://github.com/maelstrom-cms/react-mount/issues",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"cross-env": "latest",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"homepage": "https://github.com/maelstrom-cms/react-mount",
"keywords": [
"html",
"mount",
"react"
],
"license": "MIT",
"main": "dist/mount.js",
"repository": {
"type": "git",
"url": "https://github.com/maelstrom-cms/react-mount"
},
"scripts": {
"start": "npx babel src --watch --out-dir dist",
"build": "npx babel src --out-dir dist",
"release": "npm version patch && npm run build && npm publish && git push"
}
}