formhero/package.json

31 lines
815 B
JSON
Raw Normal View History

2019-09-26 19:13:27 +00:00
{
"name": "formhero",
2019-10-19 06:37:02 +00:00
"version": "0.0.4",
2019-09-26 19:13:27 +00:00
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
2019-09-28 15:21:12 +00:00
"prepublishOnly": "rm -rf ./dist && tsc",
"examples": "parcel -d public ./examples/index.html",
2019-09-28 17:10:39 +00:00
"examples:build": "rm -rf ./docs && parcel build --no-source-maps --public-url /formhero/ -d docs examples/index.html",
2019-09-28 15:21:12 +00:00
"build": "tsc",
2019-09-28 17:09:52 +00:00
"test": "parcel -d public ./test/index.html",
2019-09-28 15:21:12 +00:00
"watch": "tsc -w",
2019-09-28 17:01:06 +00:00
"dev": "pnpm run watch & pnpm run test"
2019-09-26 19:13:27 +00:00
},
"browserslist": [
2019-09-26 20:10:47 +00:00
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions"
2019-09-26 19:13:27 +00:00
],
2019-09-28 17:02:26 +00:00
"peerDependencies": {
"react": "^16.8"
},
2019-09-26 19:13:27 +00:00
"devDependencies": {
"@types/react": "^16.9.3",
"@types/react-dom": "^16.9.1",
"parcel-bundler": "^1.12.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"typescript": "^3.6.2"
}
2019-10-19 06:37:02 +00:00
}