UNPKG

perlite

Version:

[![perlite logo](/docs/logo.svg)]()

110 lines 2.63 kB
{ "name": "perlite", "version": "1.2.1", "description": "", "main": "./dist/index.js", "module": "./dist/index.mjs", "browser": { "./dist/index.js": "./dist/perlite.js", "./dist/index.mjs": "./dist/perlite.mjs" }, "scripts": { "build": "npm run lint && npm run clean && rollup --config", "lint": "tslint -c tslint.json \"src/**/*.ts\"", "lint:fix": "tslint --fix -c tslint.json \"src/**/*.ts\"", "clean": "rm -rf ./dist", "size": "size-limit", "test": "echo \"Error: no test specified\" && exit 1", "prepublishOnly": "npm run build && npm run size" }, "husky": { "hooks": { "pre-commit": "npm run prepublishOnly && git add ." } }, "browserslist": [ "extends browserslist-config-google" ], "size-limit": [ { "limit": "5 KB", "path": "dist/index.js" }, { "limit": "5 KB", "path": "dist/index.mjs" }, { "limit": "3 KB", "path": "dist/index.min.js" }, { "limit": "3 KB", "path": "dist/index.min.mjs" }, { "limit": "30 KB", "path": "dist/perlite.js" }, { "limit": "30 KB", "path": "dist/perlite.mjs" }, { "limit": "10 KB", "path": "dist/perlite.min.js" }, { "limit": "10 KB", "path": "dist/perlite.min.mjs" } ], "files": [ "src", "dist" ], "repository": { "type": "git", "url": "git+https://github.com/PaulMaly/perlite.git" }, "keywords": [ "reactive", "lit-html", "hyperactiv", "widgets" ], "bugs": { "url": "https://github.com/PaulMaly/perlite/issues" }, "homepage": "https://github.com/PaulMaly/perlite#readme", "author": "Pavel Malyshev", "license": "MIT", "devDependencies": { "@babel/core": "^7.12.3", "@babel/preset-env": "^7.12.1", "@rollup/plugin-babel": "^5.2.1", "@rollup/plugin-commonjs": "^15.1.0", "@rollup/plugin-node-resolve": "^9.0.0", "@size-limit/preset-app": "^4.7.0", "@types/jest": "^26.0.15", "browserslist-config-google": "^2.0.0", "core-js": "^3.7.0", "husky": "^4.3.0", "jest": "^26.6.0", "rollup": "^2.32.1", "rollup-plugin-minify-html-literals": "^1.2.5", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.28.0", "size-limit": "^4.7.0", "ts-jest": "^26.4.1", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "tslint-eslint-rules": "^5.4.0", "typescript": "^4.0.3" }, "dependencies": { "hyperactiv": "^0.8.4", "lit-html": "^1.3.0" } }