formhero/package.json

28 lines
648 B
JSON
Raw Normal View History

2019-09-26 19:13:27 +00:00
{
"name": "formhero",
"version": "0.0.1",
"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-26 19:13:27 +00:00
"test": "parcel -d public ./test/index.html",
2019-09-28 15:21:12 +00:00
"build": "tsc",
"watch": "tsc -w",
2019-09-26 19:13:27 +00:00
"dev": "pnpm run build & pnpm run test"
},
"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
],
"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"
}
}