1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "@mightyplow/hyperapp-components",
- "version": "1.0.0",
- "description": "A set of reusable hyperapp components",
- "main": "dist/index.js",
- "scripts": {
- "prebuild-base": "rm -rf dist/*",
- "build:base": "webpack",
- "build": "npm run build:base -- --mode production",
- "build:dev": "npm run build:base -- --mode development",
- "dev": "npm run build:dev -- --watch",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "files": [
- "dist"
- ],
- "repository": {
- "type": "git",
- "url": "https://git.mightyplow.net/mightyplow/hyperapp-components"
- },
- "keywords": [
- "hyperapp",
- "components",
- "js"
- ],
- "author": "mightyplow@gmail.com",
- "license": "ISC",
- "sideEffects": false,
- "devDependencies": {
- "@babel/core": "^7.0.0",
- "@babel/plugin-transform-react-jsx": "^7.0.0",
- "@babel/preset-env": "^7.0.0",
- "@mightyplow/jslib": "^0.21.0",
- "babel-loader": "^8.0.2",
- "classnames": "^2.2.6",
- "copy-webpack-plugin": "^4.5.2",
- "webpack": "^4.17.2",
- "webpack-cli": "^3.1.0"
- },
- "dependencies": {}
- }
|