belvederejs
Version:
🎩 Nano JavaScript wrapper for the browser's native Notification API that provides event listener functionality.
55 lines (54 loc) • 1.53 kB
JSON
{
"name": "belvederejs",
"version": "0.0.0",
"description": "🎩 Nano JavaScript wrapper for the browser's native Notification API that provides event listener functionality.",
"license": "MIT",
"main": "build/index.js",
"module": "src/index.js",
"keywords": [
"belvedere",
"belvederejs",
"fetch",
"beacon",
"sendBeacon",
"nano",
"small"
],
"bugs": {
"url": "https://github.com/Develonaut/belvedere/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Develonaut/belvedere"
},
"author": {
"email": "ryanmmchenry@gmail.com",
"name": "Ryan McHenry"
},
"scripts": {
"start": "npm run _rollup:dev",
"build": "npm run _rollup:prod",
"lint": "npm run _eslint",
"size": "npm run _size",
"test": "npm run lint && npm run _jest:watch",
"coverage": "npm run lint && npm run _jest:coverage",
"deploy": "npm run _deploy:package && npm run _deploy:publish",
"_deploy:publish": "npm publish",
"_deploy:package": "npm run build && npm run coverage && npm run size",
"_rollup:dev": "rollup -c -watch",
"_rollup:prod": "rollup -c",
"_eslint": "eslint src/**.js",
"_jest:watch": "jest --watch",
"_jest:coverage": "jest --coverage",
"_size": "size-limit",
"_size:analyze": "size-limit --why"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.7.1",
"prettier": "^1.16.4",
"rollup": "^1.9.0",
"size-limit": "^1.0.1"
}
}