UNPKG

@amilajack/gaussian-blur

Version:

optimized 9-tap gaussian blur for GLSL

97 lines (96 loc) 2.4 kB
{ "name": "@amilajack/gaussian-blur", "version": "0.0.0", "description": "optimized 9-tap gaussian blur for GLSL", "main": "./dist/index.js", "license": "MIT", "author": { "name": "Amila Welihinda", "email": "amilajack@gmail.com", "url": "https://github.com/amilajack" }, "dependencies": { "a-big-triangle": "^1.0.3", "array-range": "^1.0.1", "canvas-loop": "^1.0.7", "gl-fbo": "^2.0.5", "gl-post": "^1.0.1", "gl-shader": "^4.2.1", "gl-texture2d": "^2.1.0", "load-img": "^1.0.0", "raf-loop": "^1.1.3", "raw-loader": "^0.5.1", "webgl-context": "^2.2.0" }, "devDependencies": { "babel-loader": "^7.1.5", "dotenv": "^6.0.0", "eslint": "^5.3.0", "eslint-config-bliss": "^2.2.0", "eslint-config-prettier": "^2.9.0", "eslint-plugin-testcafe": "^0.2.1", "flow-bin": "^0.78.0", "glslify-loader": "^1.0.2", "husky": "^1.0.0-rc.2", "lint-staged": "^7.2.2", "prettier": "^1.14.2", "raw-loader": "^0.5.1", "testcafe": "^0.21.1", "testcafe-browser-provider-saucelabs": "^1.3.1", "webpack": "^4.16.5", "webpack-cli": "^3.1.0", "webpack-dev-server": "^3.1.5" }, "scripts": { "build": "NODE_ENV=production webpack", "lint": "eslint . --ignore-path .eslintignore", "lint-fix": "yarn lint --fix", "preversion": "yarn build", "postlint-fix": "prettier --single-quote --ignore-path .gitignore --write '**/*.js'", "start": "webpack-dev-server", "test": "yarn build && yarn test-e2e-local", "test-e2e-local": "testcafe chrome:headless ./test/e2e/*.e2e.js", "test-e2e": "node test/setup.js" }, "husky": { "hooks": { "pre-commit": "yarn test && lint-staged" } }, "lint-staged": { "*.js": [ "yarn lint-fix", "prettier --single-quote --ignore-path .gitignore --write", "git add" ] }, "files": [ "src", "dist" ], "keywords": [ "glsl", "shader", "webgl", "stackgl", "glslify", "blur", "blurs", "blurred", "blurring", "shaders", "tap", "taps", "gaussian", "kernel", "weights" ], "repository": { "type": "git", "url": "git://github.com/amilajack/gaussian-blur.git" }, "homepage": "https://github.com/amilajack/gaussian-blur", "bugs": { "url": "https://github.com/amilajack/gaussian-blur/issues" } }