1
0
Fork 0
freesewing/packages/simon/package.json

55 lines
1.6 KiB
JSON
Raw Normal View History

2018-12-21 18:19:21 +01:00
{
"name": "@freesewing/simon",
2019-04-29 11:22:53 +02:00
"version": "2.0.0-alpha.1",
"description": "A FreeSewing pattern for a button down shirt",
2018-12-21 18:19:21 +01:00
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
2018-12-21 18:19:21 +01:00
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
2018-12-21 18:19:21 +01:00
},
"keywords": [
"freesewing",
"design",
"diy",
"fashion",
"made to measure",
"parametric design",
2018-12-21 18:19:21 +01:00
"pattern",
"sewing",
"sewing pattern"
2018-12-21 18:19:21 +01:00
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"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 \"simon: 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-12-21 18:19:21 +01:00
},
"peerDependencies": {
2019-04-29 11:21:18 +02:00
"@freesewing/brian": "^2.0.0-alpha.0",
2019-04-29 11:12:41 +02:00
"@freesewing/core": "^2.0.0-alpha.0",
"@freesewing/plugin-bundle": "^2.0.0-alpha.0",
"@freesewing/plugin-buttons": "^2.0.0-alpha.0",
"@freesewing/plugin-flip": "^2.0.0-alpha.0"
2018-12-21 18:19:21 +01:00
},
"files": [
"dist/*",
2018-12-21 18:19:21 +01:00
"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-12-21 18:19:21 +01:00
}