UNPKG

@jeanfredrik/yett

Version:

A small library that can prevent other scripts from executing.

63 lines (62 loc) 1.82 kB
{ "name": "@jeanfredrik/yett", "version": "2.0.0", "description": "A small library that can prevent other scripts from executing.", "main": "dist/yett.min.js", "keywords": [ "block", "blocker", "yett" ], "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/snipsco/yett" }, "bugs": { "url": "https://github.com/snipsco/yett/issues" }, "scripts": { "build": "npm run lint && rollup -c && rollup -c --o docs/lib/yett.min.js && rollup -c --o test/scripts/yett.min.js", "watch": "rollup -c -w -o docs/lib/yett.min.js", "serve": "http-server -c-1 docs", "dev": "concurrently \"npm run watch\" \"npm run serve\"", "test:blacklist": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadless,Safari karma.conf.js", "test:whitelist": "WHITELIST=1 karma start --single-run --browsers ChromeHeadless,FirefoxHeadless,Safari karma.conf.js", "test": "npm run test:blacklist && npm run test:whitelist", "lint": "eslint src", "start": "npm run build && npm run test" }, "author": "Julien Elbaz", "contributors": [ { "name": "Julien Elbaz" }, { "name": "Jonas Ohlsson Aden" } ], "license": "MIT", "devDependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.2", "babel-eslint": "^10.1.0", "chai": "^4.2.0", "concurrently": "^5.2.0", "eslint": "^7.1.0", "http-server": "^0.12.3", "karma": "^5.0.9", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^3.1.0", "karma-firefox-launcher": "^1.3.0", "karma-mocha": "^2.0.1", "karma-safari-launcher": "^1.0.0", "mocha": "^7.2.0", "rollup": "^2.13.1", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-uglify": "^6.0.4", "uglify-es": "^3.3.9" } }