{ "name": "@freesewing/plugin-cutonfold", "version": "0.33.0", "description": "A freesewing plugin to add cut-on-fold indicators on your patterns", "author": "Joost De Cock (https://github.com/joostdecock)", "license": "MIT", "homepage": "https://github.com/freesewing/plugin-cutonfold#readme", "repository": "github:freesewing/plugin-cutonfold", "bugs": { "url": "https://github.com/freesewing/plugin-cutonfold/issues" }, "keywords": [ "freesewing", "plugin", "sewing", "patterns", "cut on fold" ], "main": "dist/index.js", "module": "dist/index.mjs", "scripts": { "patch": "npm version patch -m ':bookmark: v%s' && npm run build", "minor": "npm version minor -m ':bookmark: v%s' && npm run build", "major": "npm version major -m ':bookmark: v%s' && npm run build", "precommit": "npm run pretty && lint-staged", "test": "nyc mocha --require @babel/register tests/*.test.js", "report": "nyc report --reporter=html mocha --require @babel/register tests/*.test.js", "coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov", "clean": "rimraf dist", "pretty": "npx prettier --write \"src/*.js\"", "lint": "eslint --fix \"src/*.js\"", "nodebuild": "rollup -c -o dist/index.js -f cjs", "modulebuild": "rollup -c -o dist/index.mjs -f es", "rebuild": "npm run nodebuild && npm run modulebuild", "build": "npm run clean && npm run nodebuild && npm run modulebuild" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,json}": [ "prettier --write", "git add" ] }, "files": [ "dist/*", "README.md", "package-lock.json", "package.json" ], "gitHead": "db3d4df92285ac8889fa72fba68c970ffcd59775" }