2018-08-14 10:22:48 +02:00
|
|
|
{
|
2019-04-19 10:16:29 +02:00
|
|
|
"version": "0.33.0",
|
2018-08-14 10:22:48 +02:00
|
|
|
"name": "@freesewing/examples",
|
|
|
|
"description": "Freesewing examples for our documentation",
|
|
|
|
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
|
|
|
|
"license": "MIT",
|
|
|
|
"homepage": "https://github.com/freesewing/examples#readme",
|
|
|
|
"repository": "github:freesewing/examples",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/freesewing/examples/issues"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"freesewing",
|
|
|
|
"pattern",
|
|
|
|
"sewing",
|
|
|
|
"menswear",
|
|
|
|
"examples"
|
|
|
|
],
|
|
|
|
"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'",
|
|
|
|
"browserbuild": "rollup -c rollup.js -o dist/browser.js -f iife -n freesewing_patterns_examples --footer 'freesewing.patterns.examples = freesewing_patterns_examples;'",
|
|
|
|
"nodebuild": "rollup -c rollup.js -o dist/index.js -f cjs",
|
|
|
|
"modulebuild": "rollup -c rollup.js -o dist/index.mjs -f es",
|
2019-01-26 20:21:48 +01:00
|
|
|
"rebuild": "npm run nodebuild && npm run modulebuild",
|
2018-08-14 10:22:48 +02:00
|
|
|
"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": {
|
2019-03-24 14:38:12 +01:00
|
|
|
"@freesewing/plugin-bundle": "0.8.0",
|
|
|
|
"freesewing": "0.30.6"
|
2018-08-14 10:22:48 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-04-19 09:53:40 +02:00
|
|
|
"@freesewing/models": "file:../models"
|
2018-08-14 10:22:48 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist/*",
|
2019-01-27 15:07:41 +01:00
|
|
|
"src/*",
|
2018-08-14 10:22:48 +02:00
|
|
|
"README.md",
|
|
|
|
"package-lock.json",
|
|
|
|
"package.json"
|
2019-04-19 09:53:40 +02:00
|
|
|
],
|
|
|
|
"gitHead": "db3d4df92285ac8889fa72fba68c970ffcd59775"
|
2018-08-14 10:22:48 +02:00
|
|
|
}
|