1
0
Fork 0
freesewing/packages/plugin-theme/package.json

54 lines
1.5 KiB
JSON
Raw Normal View History

2018-07-18 09:09:53 +00:00
{
"name": "@freesewing/plugin-theme",
2020-07-29 18:04:21 +02:00
"version": "2.7.2",
"description": "A FreeSewing plugin that provides a default theme",
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
"keywords": [
"freesewing",
"plugin",
"sewing pattern",
2018-07-25 11:32:53 +00:00
"sewing",
"design",
"parametric design",
"made to measure",
"diy",
"fashion"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
2018-07-18 09:09:53 +00:00
"scripts": {
"clean": "rimraf dist",
2019-05-31 16:33:01 +02:00
"build": "npm run clean && rollup -c",
"test": "echo \"plugin-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
2019-04-29 11:12:41 +02:00
"pubtest": "npm publish --registry http://localhost:6662",
"pubforce": "npm publish",
2019-05-31 16:33:01 +02:00
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
"start": "rollup -c -w",
"prebuild": "npx node-sass --output-style compressed -r src/scss -o css && echo 'export default `' > src/bundle.css.js && cat css/*.css >> src/bundle.css.js && echo '`;' >> src/bundle.css.js"
2018-07-18 09:09:53 +00:00
},
"peerDependencies": {
2020-07-29 18:04:21 +02:00
"@freesewing/core": "^2.7.2"
2018-07-18 09:09:53 +00:00
},
"dependencies": {},
"devDependencies": {},
"files": [
"dist/*",
"README.md",
"package.json"
2019-04-19 09:53:40 +02:00
],
"publishConfig": {
2019-04-29 11:12:41 +02:00
"access": "public",
2020-07-24 15:20:48 +02:00
"tag": "latest"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
}
2018-07-18 09:09:53 +00:00
}