1
0
Fork 0
freesewing/packages/cathrin/package.json

64 lines
2 KiB
JSON
Raw Normal View History

2018-09-11 16:26:38 +02:00
{
2019-04-19 10:16:29 +02:00
"version": "0.33.0",
2018-09-11 16:26:38 +02:00
"name": "@freesewing/cathrin",
"description": "Freesewing pattern for a underbust corset / waist trainer",
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"license": "MIT",
"homepage": "https://github.com/freesewing/cathrin#readme",
"repository": "github:freesewing/cathrin",
"bugs": {
"url": "https://github.com/freesewing/cathrin/issues"
},
"keywords": [
"freesewing",
"pattern",
"sewing",
"womenswear",
"corset",
"underbust"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/browser.js",
"scripts": {
"precommit": "npm run pretty && lint-staged",
"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",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"pretty": "npx prettier --write \"src/*.js\"",
"lint": "eslint --fix \"src/*.js\"",
"watch": "npx webpack --watch",
"browserbuild": "rollup -c rollup.js -o dist/browser.js -f iife -m true -n freesewing_patterns_cathrin --footer 'freesewing.patterns.cathrin = freesewing_patterns_cathrin;'",
"nodebuild": "rollup -c rollup.js -o dist/index.js -f cjs -m true",
"modulebuild": "rollup -c rollup.js -o dist/index.mjs -f es -m true",
"build": "npm run clean && npm run browserbuild && npm run nodebuild && npm run modulebuild"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@freesewing/plugin-bundle": "0.8.0",
"freesewing": "0.30.6"
2018-09-11 16:26:38 +02:00
},
"devDependencies": {
2019-04-19 09:53:40 +02:00
"@freesewing/models": "file:../models"
2018-09-11 16:26:38 +02:00
},
"files": [
"dist/*",
"README.md",
"package-lock.json",
"package.json"
2019-04-19 09:53:40 +02:00
],
"gitHead": "db3d4df92285ac8889fa72fba68c970ffcd59775"
2018-09-11 16:26:38 +02:00
}