{ "name": "ndarray-lanczos", "version": "0.3.0", "description": "Resize an ndarray with Lanczos resampling", "type": "module", "sideEffects": false, "source": "./src/index.ts", "types": "./dist/src/index.d.ts", "main": "./dist/ndarray-lanczos.cjs", "module": "./dist/ndarray-lanczos.modern.js", "exports": { "types": "./dist/src/index.d.ts", "require": "./dist/ndarray-lanczos.cjs", "default": "./dist/ndarray-lanczos.modern.js" }, "repository": "github:donmccurdy/ndarray-lanczos", "author": "Don McCurdy ", "license": "MIT", "scripts": { "dist": "microbundle --format modern,cjs --define PACKAGE_VERSION=$npm_package_version", "watch": "microbundle watch --format modern,cjs --define PACKAGE_VERSION=$npm_package_version", "watch:debug": "microbundle watch --no-compress --format modern,cjs --define PACKAGE_VERSION=$npm_package_version", "clean": "rimraf dist/*", "test": "ava test/*.test.ts", "coverage": "c8 --reporter=lcov --reporter=text ava test/*.test.ts --tap", "coverage:report": "c8 report --reporter=text-lcov > coverage/coverage.lcov", "preversion": "yarn clean && yarn dist && yarn test", "version": "yarn dist && git add -u", "postversion": "git push && git push --tags && npm publish && yarn coverage:report" }, "devDependencies": { "@types/tape": "4.13.2", "@typescript-eslint/eslint-plugin": "5.53.0", "ava": "^5.2.0", "c8": "^7.13.0", "coveralls": "3.1.1", "eslint": "8.34.0", "microbundle": "0.15.1", "ndarray-pixels": "2.0.0", "rimraf": "^4.1.2", "ts-node": "10.9.1", "typescript": "4.9.5" }, "files": [ "dist/", "src/", "vendor/", "README.md", "LICENSE", "package.json" ], "dependencies": { "@types/ndarray": "^1.0.11", "ndarray": "^1.0.19" }, "ava": { "extensions": { "ts": "module" }, "nodeArguments": [ "--loader=ts-node/esm" ] } }