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

51 lines
1.4 KiB
JSON
Raw Normal View History

2018-07-18 12:18:49 +00:00
{
"name": "@freesewing/plugin-designer",
2019-05-01 10:44:31 +02:00
"version": "2.0.0-alpha.3",
"description": "A FreeSewing plugin to facilitate pattern design",
"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",
"sewing",
"design",
"parametric design",
"made to measure",
"diy",
"fashion"
],
"main": "dist/index.js",
2019-04-13 15:28:39 +02:00
"module": "dist/index.mjs",
2018-07-18 12:18:49 +00:00
"scripts": {
"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": "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",
2019-04-29 11:12:41 +02:00
"pubtest": "npm publish --registry http://localhost:6662",
"publish": "npm build && npm publish --access=public --tag=alpha"
2018-07-18 12:18:49 +00:00
},
"peerDependencies": {
"@freesewing/core": "^2.0.0-alpha.2"
2018-07-18 12:18:49 +00:00
},
"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",
"tag": "alpha"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
}
2018-07-18 12:18:49 +00:00
}