UNPKG

escape-button-js

Version:

Open source widget to help users quickly and discretely leave your website

79 lines (78 loc) 1.83 kB
{ "name": "escape-button-js", "version": "1.0.5", "description": "Open source widget to help users quickly and discretely leave your website", "main": "dist/index.commonjs2.min.js", "scripts": { "build": "webpack", "lint": "npm-run-all -p lint:code lint:css", "lint:code": "eslint .", "lint:css": "stylelint '*.css'", "lint:fix": "eslint --fix .", "format": "npm run prettier -- --write", "prettier": "prettier \"**/*.{html,md,css,scss,yaml,yml}\"" }, "repository": { "type": "git", "url": "https://github.com/our-wave/escape-button-js" }, "keywords": [ "escape", "violence", "widget" ], "license": "MIT", "private": false, "author": { "name": "Our Wave", "email": "hello@ourwave.org", "url": "https://www.ourwave.org" }, "maintainers": [ { "name": "Our Wave", "email": "hello@ourwave.org", "url": "https://www.ourwave.org" } ], "dependencies": { "core-js": "^3.6.5", "regenerator-runtime": "^0.13.7" }, "devDependencies": { "@babel/core": "^7.4.0", "@babel/preset-env": "^7.9.0", "babel-loader": "^8.1.0", "cross-env": "^7.0.2", "css-loader": "^3.5.3", "dotenv": "^8.2.0", "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.1.0", "eslint-plugin-import": "^2.20.2", "eslint-plugin-node": "^11.1.0", "html-webpack-plugin": "^4.3.0", "husky": "^4.2.5", "lint-staged": "^10.2.2", "npm-run-all": "^4.1.5", "prettier": "2.0.5", "style-loader": "^3.2.1", "stylelint": "^13.3.3", "stylelint-config-recommended": "^3.0.0", "url-loader": "^4.1.0", "webpack": "^5.3.0", "webpack-cli": "^4.1.0" }, "engines": { "node": ">=10.0" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{html,md,css,scss,yaml,yml}": "prettier --write", "*.js": "eslint --fix", "*.css": "stylelint" } }