UNPKG

toastr2

Version:

ToastrJS is a JavaScript library for Gnome / Growl type non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended.

98 lines (97 loc) 2.74 kB
{ "name": "toastr2", "main": "dist/Toastr.umd.js", "module": "dist/Toastr.es5.js", "typings": "dist/types/src/Toastr.d.ts", "style": "dist/toastr.min.css", "version": "3.0.0-alpha.18", "description": "ToastrJS is a JavaScript library for Gnome / Growl type non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended.", "homepage": "http://www.toastrjs.com", "keywords": [ "Toastr", "ToastrJS", "toastr.js" ], "husky": { "hooks": { "pre-push": "npm test", "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts}": [ "eslint --fix" ] }, "maintainers": [ { "name": "Jan peer Stöcklmair", "web": "https://jpeer.at", "twitter": "@jpeer264" } ], "authors": [ { "name": "John Papa", "web": "http://www.johnpapa.net", "twitter": "@john_papa" }, { "name": "Tim Ferrell", "web": "https://twitter.com/ferrell_tim", "twitter": "@ferrell_tim" } ], "repository": { "type": "git", "url": "git://github.com/JPeer264/toastr2.git" }, "bugs": "http://stackoverflow.com/questions/tagged/toastr", "license": "MIT", "dependencies": { "array.prototype.flat": "^1.2.3", "lodash": "^4.17.11" }, "devDependencies": { "@types/array.prototype.flat": "^1.2.1", "@types/jest": "^23.3.13", "@types/jquery": "^3.3.29", "@types/lodash": "^4.14.120", "coveralls": "^3.0.9", "cpy-cli": "^3.1.1", "eslint": "^5.12.1", "eslint-config-airbnb-base": "^13.1.0", "eslint-config-typescript": "^1.1.0", "eslint-plugin-import": "^2.15.0", "eslint-plugin-typescript": "^0.14.0", "husky": "^4.2.3", "jest": "^25.1.0", "jquery": "^3.3.1", "lint-staged": "^10.0.7", "lodash.camelcase": "^4.3.0", "node-sass": "^4.13.1", "parcel": "^1.12.4", "rollup": "^1.1.2", "rollup-plugin-commonjs": "^9.2.0", "rollup-plugin-json": "^3.1.0", "rollup-plugin-node-resolve": "^4.0.0", "rollup-plugin-postcss": "^2.0.3", "rollup-plugin-sourcemaps": "^0.4.2", "rollup-plugin-typescript2": "^0.19.2", "ts-jest": "^25.2.1", "typedoc": "^0.14.2", "typescript": "^3.2.4", "typescript-eslint-parser": "^22.0.0" }, "scripts": { "prepublishOnly": "npm run build", "prebuild": "rimraf dist", "build": "rollup -c rollup.config.ts && cpy src/toastr.scss dist", "lint": "eslint \"./src/**/*.ts\"", "fix": "npm run lint -- --fix", "start": "rollup -c rollup.config.ts -w", "test": "jest --coverage", "coveralls": "cat ./coverage/lcov.info | coveralls", "demo": "parcel ./demo/index.html" } }