formhero/package.json

26 lines
557 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-26 20:10:47 +00:00
"prepublishOnly": "tsc",
2019-09-26 19:13:27 +00:00
"test": "parcel -d public ./test/index.html",
"build": "tsc -w",
"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"
}
}