1
0
Fork 0

🚧 Handling of package.json exceptions

This commit is contained in:
Joost De Cock 2019-04-20 19:23:22 +02:00
parent daf65326ae
commit 0461c64b9a
117 changed files with 1018 additions and 772 deletions

View file

@ -1,4 +1,7 @@
{
"name": "@freesewing/css-theme",
"version": "0.33.0",
"description": "A CSS theme for FreeSewing web UIs",
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
@ -17,9 +20,9 @@
"module": "dist/index.mjs",
"scripts": {
"clean": "rimraf ../../dist/css-theme",
"nodebuild": "rollup -c -o ../../dist/css-theme/index.js -f cjs",
"modulebuild": "rollup -c -o ../../dist/css-theme/index.mjs -f es",
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
"nodebuild": "BABEL_ENV=production rollup -c -o ../../dist/css-theme/index.js -f cjs",
"modulebuild": "BABEL_ENV=production rollup -c -o ../../dist/css-theme/index.mjs -f es",
"build": "npx node-sass --output-style compressed src/theme.scss ../../dist/css-theme/theme.css",
"test": "echo \"css-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
"pubtest": "npm publish --registry http://localhost:6662"
},
@ -35,8 +38,7 @@
"access": "public"
},
"engines": {
"node": ">=8.0.0"
},
"version": "0.33.0",
"name": "@freesewing/css-theme"
"node": ">=8.0.0",
"npm": ">=5"
}
}