1
0
Fork 0
freesewing/packages/plugin-buttons/package.json
Joost De Cock 74e8ef991c 🔖 Publish v0.33.0
2019-04-19 10:16:29 +02:00

54 lines
1.8 KiB
JSON

{
"name": "@freesewing/plugin-buttons",
"version": "0.33.0",
"description": "A freesewing plugin that provides button and buttonhole snippets",
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"license": "MIT",
"homepage": "https://github.com/freesewing/plugin-buttons#readme",
"repository": "github:freesewing/plugin-buttons",
"bugs": {
"url": "https://github.com/freesewing/plugin-buttons/issues"
},
"keywords": [
"freesewing",
"plugin",
"sewing patterns",
"snippets"
],
"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": {
"src/*.{js,json}": [
"prettier --write",
"git add"
]
},
"files": [
"dist/*",
"README.md",
"package-lock.json",
"package.json"
],
"gitHead": "db3d4df92285ac8889fa72fba68c970ffcd59775"
}