UNPKG

@tonicpow/widget

Version:

TonicPow helps manage visitor sessions, loads any TonicPow Widgets, and fires events.

94 lines (93 loc) 2.35 kB
{ "name": "@tonicpow/widget", "version": "0.0.18", "description": "TonicPow helps manage visitor sessions, loads any TonicPow Widgets, and fires events.", "author": { "name": "TonicPow", "email": "support@tonicpow.com", "url": "https://docs.tonicpow.com" }, "contributors": [ { "name": "Satchmo", "url": "https://github.com/rohenaz/" }, { "name": "MrZ", "url": "https://github.com/mrz1836/" } ], "bugs": { "url": "https://github.com/tonicpow/widget/issues" }, "homepage": "https://docs.tonicpow.com", "scripts": { "lint": "eslint src/*.ts --cache --fix && prettier src/*.ts --write && eslint test/*.ts --cache --fix && prettier test/*.ts --write", "test": "mocha -r jsdom-global/register test/*.ts", "clean": "rimraf ./dist/*", "build": "yarn clean && webpack --config webpack.config.js", "deploy": "npm publish --access public" }, "license": "Open BSV", "repository": { "type": "git", "url": "https://github.com/tonicpow/widget/" }, "keywords": [ "tonic", "tonicpow-js", "tonicpow", "embed", "bitcoin", "bsv" ], "main": "./dist/tonicpow.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "devDependencies": { "@types/chai": "^4.3.0", "@types/expect": "^24.3.0", "@types/mocha": "^9.0.0", "@typescript-eslint/eslint-plugin": "^5.8.1", "@typescript-eslint/parser": "^5.8.1", "chai": "^4.3.4", "eslint": "^8.6.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-mocha": "^10.0.1", "eslint-plugin-prettier": "^4.0.0", "husky": "^8.0.1", "jsdom": "20.0.0", "jsdom-global": "^3.0.2", "lint-staged": "^13.0.0", "mocha": "^10.0.0", "prettier": "^2.5.1", "pretty-quick": "^3.1.3", "rimraf": "^3.0.2", "ts-loader": "^9.0.0", "ts-node": "^10.2.1", "typescript": "4.8.3", "webpack": "^5.65.0", "webpack-cli": "^4.6.0" }, "engines": { "node": "*" }, "prettier": { "singleQuote": true, "printWidth": 100, "semi": false }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "files": [ "dist/*" ], "lint-staged": { "*.{ts,js}": "eslint --cache --fix", "*.{ts,js,css,md}": "prettier --write" } }