🔧 Reconfigure packages
This commit is contained in:
parent
2c04ee2c93
commit
bb2bce9bcf
53 changed files with 565 additions and 531 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -19,6 +19,7 @@ packages/components/withLanguage
|
||||||
packages/components/Workbench
|
packages/components/Workbench
|
||||||
packages/core/coverage
|
packages/core/coverage
|
||||||
packages/workbench
|
packages/workbench
|
||||||
|
.netlify
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
node_modules
|
node_modules
|
||||||
|
|
|
@ -6,6 +6,9 @@ _:
|
||||||
pubforce: "npm publish"
|
pubforce: "npm publish"
|
||||||
symlink: "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
symlink: "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
||||||
start: "rollup -c -w"
|
start: "rollup -c -w"
|
||||||
|
_types:
|
||||||
|
pattern:
|
||||||
|
netlify: "echo \"Not configured yet\""
|
||||||
create-freesewing-pattern:
|
create-freesewing-pattern:
|
||||||
clean: "!"
|
clean: "!"
|
||||||
nodebuild: "!"
|
nodebuild: "!"
|
||||||
|
@ -23,15 +26,14 @@ components:
|
||||||
build: "npm run clean && rollup -c"
|
build: "npm run clean && rollup -c"
|
||||||
watch: "BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs"
|
watch: "BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs"
|
||||||
core:
|
core:
|
||||||
build: "npm run clean && rollup -c && rollup -c rollup.tests.js",
|
build: "npm run clean && rollup -c && rollup -c rollup.tests.js"
|
||||||
testonly: "BABEL_ENV=production mocha tests/*.test.js",
|
testonly: "BABEL_ENV=production mocha tests/*.test.js"
|
||||||
test: "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js",
|
test: "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js"
|
||||||
report: "BABEL_ENV=production nyc report --reporter=html",
|
report: "BABEL_ENV=production nyc report --reporter=html"
|
||||||
coverage: "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
|
coverage: "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
||||||
i18n:
|
i18n:
|
||||||
# react-scripts doesn't handle .mjs files correctly
|
# react-scripts doesn't handle .mjs files correctly
|
||||||
modulebuild: '!'
|
modulebuild: '!'
|
||||||
build: "npm run clean && npm run nodebuild"
|
|
||||||
pattern-info:
|
pattern-info:
|
||||||
prepare: "node src/prebuild.js"
|
prepare: "node src/prebuild.js"
|
||||||
utils:
|
utils:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "aaron-example",
|
"name": "aaron-example",
|
||||||
"homepage": "https://freesewing.github.io/aaron",
|
"homepage": "https://aaron.freesewing.dev/",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -24,22 +24,28 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"aaron: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"aaron: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/brian": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/brian": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -49,21 +55,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -73,7 +69,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,22 +24,28 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"bent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"bent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/brian": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/brian": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -49,21 +55,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -73,7 +69,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"brian: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"brian: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"bruce: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"bruce: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,25 +24,31 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"carlita: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"carlita: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/bent": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/carlton": "^2.0.0-beta.12",
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/bent": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
"@freesewing/carlton": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bust": "^2.0.0-beta.12",
|
"@freesewing/plugin-bust": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12"
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -52,21 +58,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -76,7 +72,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,23 +24,29 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"carlton: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"carlton: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/bent": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
"@freesewing/bent": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12"
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -50,21 +56,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -74,7 +70,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"cathrin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"cathrin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -21,27 +21,30 @@
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w",
|
||||||
"storybook": "start-storybook -p 6663",
|
"storybook": "start-storybook -p 6663",
|
||||||
"watch": "BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs"
|
"watch": "BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"react": "^16.8",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.12",
|
"prop-types": "15.7.2",
|
||||||
"@freesewing/examples": "^2.0.0-beta.12",
|
"@freesewing/pattern-info": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.12",
|
"@freesewing/mui-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/mui-theme": "^2.0.0-beta.12",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/pattern-info": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/rendertest": "^2.0.0-beta.12",
|
"@freesewing/examples": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.12",
|
"@freesewing/rendertest": "^2.0.0-beta.13",
|
||||||
|
"typeface-roboto-condensed": "latest",
|
||||||
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
|
"react-intl": "^2.8.0",
|
||||||
"@material-ui/core": "^4.0.1",
|
"@material-ui/core": "^4.0.1",
|
||||||
"@material-ui/icons": "^4.0.1",
|
"@material-ui/icons": "^4.0.1",
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
"prismjs": "1.16.0",
|
"prismjs": "1.16.0"
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-intl": "^2.8.0",
|
|
||||||
"typeface-roboto-condensed": "latest"
|
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"Blockquote/*",
|
"Blockquote/*",
|
||||||
"Draft/*",
|
"Draft/*",
|
||||||
|
|
|
@ -26,20 +26,22 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"build": "npm run clean && rollup -c && rollup -c rollup.tests.js",
|
"build": "npm run clean && rollup -c && rollup -c rollup.tests.js",
|
||||||
"testonly": "BABEL_ENV=production mocha tests/*.test.js",
|
|
||||||
"test": "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js",
|
"test": "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w",
|
||||||
|
"testonly": "BABEL_ENV=production mocha tests/*.test.js",
|
||||||
"report": "BABEL_ENV=production nyc report --reporter=html",
|
"report": "BABEL_ENV=production nyc report --reporter=html",
|
||||||
"coverage": "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
|
"coverage": "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
||||||
"watch": "BABEL_ENV=production rollup -c -w"
|
|
||||||
},
|
},
|
||||||
|
"peerDependencies": {},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bezier-js": "^2.2.13",
|
"bezier-js": "^2.2.13",
|
||||||
"bin-pack": "1.0.2",
|
"bin-pack": "1.0.2",
|
||||||
"hooks": "^0.3.2"
|
"hooks": "^0.3.2"
|
||||||
},
|
},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -20,11 +20,11 @@
|
||||||
"test": "echo \"create-freesewing-pattern: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"create-freesewing-pattern: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
|
"peerDependencies": {},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
|
||||||
"@freesewing/pattern-info": "^2.0.0-beta.13",
|
|
||||||
"chalk": "^2.4.2",
|
"chalk": "^2.4.2",
|
||||||
"commander": "^2.19.0",
|
"commander": "^2.19.0",
|
||||||
"conf": "^2.2.0",
|
"conf": "^2.2.0",
|
||||||
|
@ -40,8 +40,11 @@
|
||||||
"p-each-series": "^1.0.0",
|
"p-each-series": "^1.0.0",
|
||||||
"parse-git-config": "^3.0.0",
|
"parse-git-config": "^3.0.0",
|
||||||
"validate-npm-package-name": "^3.0.0",
|
"validate-npm-package-name": "^3.0.0",
|
||||||
"which": "^1.3.1"
|
"which": "^1.3.1",
|
||||||
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
"@freesewing/pattern-info": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"lib",
|
"lib",
|
||||||
"template",
|
"template",
|
||||||
|
|
|
@ -19,18 +19,19 @@
|
||||||
"main": "dist/theme.css",
|
"main": "dist/theme.css",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npx node-sass --output-style compressed src/theme.scss dist/theme.css",
|
"build": "npx node-sass --output-style compressed src/theme.scss dist/theme.css",
|
||||||
"test": "echo \"css-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"css-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w",
|
||||||
"watch": "npx node-sass --watch --output-style compressed src/theme.scss dist/theme.css"
|
"watch": "npx node-sass --watch --output-style compressed src/theme.scss dist/theme.css"
|
||||||
},
|
},
|
||||||
|
"peerDependencies": {},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"open-color": "1.6.3"
|
"open-color": "1.6.3"
|
||||||
},
|
},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -19,21 +19,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"examples: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"examples: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -43,21 +49,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -67,7 +63,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"florent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"florent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"huey: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"huey: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"hugo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"hugo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -20,16 +20,18 @@
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"build": "npm run clean && npm run nodebuild",
|
|
||||||
"test": "echo \"i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/pattern-info": "^2.0.0-beta.12"
|
"@freesewing/pattern-info": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -25,11 +25,6 @@ export default {
|
||||||
file: main,
|
file: main,
|
||||||
format: "cjs",
|
format: "cjs",
|
||||||
sourcemap: true
|
sourcemap: true
|
||||||
},
|
|
||||||
{
|
|
||||||
file: module,
|
|
||||||
format: "es",
|
|
||||||
sourcemap: true
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"jaeger: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"jaeger: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -21,14 +21,16 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"models: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"models: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
|
"peerDependencies": {},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -19,19 +19,20 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"mui-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"mui-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@material-ui/core": "^4.0.1",
|
"@material-ui/core": "^4.0.1",
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8"
|
"react-dom": "^16.8"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -22,19 +22,20 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"pattern-info: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"pattern-info: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w",
|
||||||
"prepare": "node src/prebuild.js"
|
"prepare": "node src/prebuild.js"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,16 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"patterns: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"patterns: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@freesewing/aaron": "^2.0.0-beta.13",
|
"@freesewing/aaron": "^2.0.0-beta.13",
|
||||||
|
@ -55,6 +54,7 @@
|
||||||
"@freesewing/trayvon": "^2.0.0-beta.13",
|
"@freesewing/trayvon": "^2.0.0-beta.13",
|
||||||
"@freesewing/wahid": "^2.0.0-beta.13"
|
"@freesewing/wahid": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-banner: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-banner: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -25,27 +25,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-bundle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-bundle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@freesewing/plugin-cutonfold": "^2.0.0-beta.13",
|
"@freesewing/plugin-cutonfold": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-dimension": "^2.0.0-beta.13",
|
"@freesewing/plugin-dimension": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-grainline": "^2.0.0-beta.13",
|
"@freesewing/plugin-grainline": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-logo": "^2.0.0-beta.13",
|
"@freesewing/plugin-logo": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-round": "^2.0.0-beta.13",
|
"@freesewing/plugin-title": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-scalebox": "^2.0.0-beta.13",
|
"@freesewing/plugin-scalebox": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-sprinkle": "^2.0.0-beta.13",
|
"@freesewing/plugin-round": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-title": "^2.0.0-beta.13"
|
"@freesewing/plugin-sprinkle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-bust: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-bust: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-buttons: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-buttons: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-cutonfold: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-cutonfold: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-debug: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-debug: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-designer: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-designer: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-dimension: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-dimension: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-flip: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-flip: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-grainline: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-grainline: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-logo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-logo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-round: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-round: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-scalebox: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-scalebox: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-sprinkle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-sprinkle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-svgattr: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-svgattr: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-title: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-title: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,17 +24,18 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"plugin-validate: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"plugin-validate: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12"
|
"@freesewing/core": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"rendertest: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"rendertest: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"shin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"shin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,24 +24,30 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"simon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"simon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/brian": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
"@freesewing/brian": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.12"
|
"@freesewing/plugin-flip": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -51,21 +57,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -75,7 +71,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"sven: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"sven: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"tamiko: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"tamiko: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"trayvon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"trayvon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -24,21 +24,27 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"tutorial: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"tutorial: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12"
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -48,21 +54,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -72,7 +68,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
|
@ -21,13 +21,16 @@
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
|
||||||
"build": "npm run clean && npm run nodebuild",
|
"build": "npm run clean && npm run nodebuild",
|
||||||
"test": "echo \"utils: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"utils: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -"
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
|
"start": "rollup -c -w"
|
||||||
},
|
},
|
||||||
|
"peerDependencies": {},
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
|
|
@ -24,24 +24,30 @@
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
|
"build": "npm run clean && rollup -c",
|
||||||
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
|
|
||||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
|
||||||
"test": "echo \"wahid: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
"test": "echo \"wahid: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||||
"pubtest": "npm publish --registry http://localhost:6662",
|
"pubtest": "npm publish --registry http://localhost:6662",
|
||||||
"pubforce": "npm publish",
|
"pubforce": "npm publish",
|
||||||
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
||||||
"start": "rollup -c -w"
|
"start": "rollup -c -w",
|
||||||
|
"netlify": "echo \"Not configured yet\""
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/brian": "^2.0.0-beta.12",
|
"@freesewing/core": "^2.0.0-beta.13",
|
||||||
"@freesewing/core": "^2.0.0-beta.12",
|
"@freesewing/plugin-bundle": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-bundle": "^2.0.0-beta.12",
|
"@freesewing/brian": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.12",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-round": "^2.0.0-beta.12"
|
"@freesewing/plugin-round": "^2.0.0-beta.13"
|
||||||
},
|
},
|
||||||
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"react": "^16.8",
|
||||||
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
|
"babel-eslint": "10.0.1",
|
||||||
|
"eslint": "^5.16.0",
|
||||||
|
"babel-jest": "24.7.1",
|
||||||
|
"jest": "24.7.1",
|
||||||
"@freesewing/components": "^2.0.0-beta.13",
|
"@freesewing/components": "^2.0.0-beta.13",
|
||||||
"@freesewing/css-theme": "^2.0.0-beta.13",
|
"@freesewing/css-theme": "^2.0.0-beta.13",
|
||||||
"@freesewing/i18n": "^2.0.0-beta.13",
|
"@freesewing/i18n": "^2.0.0-beta.13",
|
||||||
|
@ -51,21 +57,11 @@
|
||||||
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
"@freesewing/plugin-buttons": "^2.0.0-beta.13",
|
||||||
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
"@freesewing/plugin-flip": "^2.0.0-beta.13",
|
||||||
"@freesewing/utils": "^2.0.0-beta.13",
|
"@freesewing/utils": "^2.0.0-beta.13",
|
||||||
"@material-ui/core": "4.0.1",
|
|
||||||
"@material-ui/icons": "4.0.1",
|
|
||||||
"@material-ui/lab": "^v4.0.0-alpha.14",
|
|
||||||
"@svgr/rollup": "^2.4.1",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"babel-eslint": "10.0.1",
|
|
||||||
"babel-jest": "24.7.1",
|
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"eslint": "^5.16.0",
|
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"jest": "24.7.1",
|
|
||||||
"prop-types": "15.7.2",
|
|
||||||
"react": "^16.8",
|
|
||||||
"react-dom": "^16.8",
|
|
||||||
"react-intl": "2.8.0",
|
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
"webpack": "4.29.6",
|
||||||
"rollup": "^0.64.1",
|
"rollup": "^0.64.1",
|
||||||
"rollup-plugin-babel": "^4.0.1",
|
"rollup-plugin-babel": "^4.0.1",
|
||||||
"rollup-plugin-babel-minify": "^7.0.0",
|
"rollup-plugin-babel-minify": "^7.0.0",
|
||||||
|
@ -75,7 +71,11 @@
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.0",
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
||||||
"rollup-plugin-postcss": "^1.6.2",
|
"rollup-plugin-postcss": "^1.6.2",
|
||||||
"rollup-plugin-url": "^1.4.0",
|
"rollup-plugin-url": "^1.4.0",
|
||||||
"webpack": "4.29.6"
|
"@material-ui/core": "4.0.1",
|
||||||
|
"@material-ui/icons": "4.0.1",
|
||||||
|
"@material-ui/lab": "^v4.0.0-alpha.14",
|
||||||
|
"react-intl": "2.8.0",
|
||||||
|
"prop-types": "15.7.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*",
|
"dist/*",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue