package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@mightyplow/hyperapp-components",
  3. "version": "1.0.0",
  4. "description": "A set of reusable hyperapp components",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "prebuild-base": "rm -rf dist/*",
  8. "build:base": "webpack",
  9. "build": "npm run build:base -- --mode production",
  10. "build:dev": "npm run build:base -- --mode development",
  11. "dev": "npm run build:dev -- --watch",
  12. "test": "echo \"Error: no test specified\" && exit 1"
  13. },
  14. "files": [
  15. "dist"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "https://git.mightyplow.net/mightyplow/hyperapp-components"
  20. },
  21. "keywords": [
  22. "hyperapp",
  23. "components",
  24. "js"
  25. ],
  26. "author": "mightyplow@gmail.com",
  27. "license": "ISC",
  28. "sideEffects": false,
  29. "devDependencies": {
  30. "@babel/core": "^7.0.0",
  31. "@babel/plugin-transform-react-jsx": "^7.0.0",
  32. "@babel/preset-env": "^7.0.0",
  33. "@mightyplow/jslib": "^0.21.0",
  34. "babel-loader": "^8.0.2",
  35. "classnames": "^2.2.6",
  36. "copy-webpack-plugin": "^4.5.2",
  37. "webpack": "^4.17.2",
  38. "webpack-cli": "^3.1.0"
  39. },
  40. "dependencies": {}
  41. }