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

62 lines
1.7 KiB
JSON
Raw Normal View History

2020-05-10 11:58:02 -05:00
{
"name": "@freesewing/plugin-mirror",
2022-06-15 07:17:45 +02:00
"version": "2.21.0-alpha.0",
"description": "A FreeSewing plugin to mirror points or paths",
2021-04-11 17:32:58 +02:00
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
2020-05-10 11:58:02 -05:00
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
2021-09-02 18:45:47 +02:00
"funding": {
"type": "individual",
"url": "https://freesewing.org/patrons/join"
},
2020-05-10 11:58:02 -05:00
"keywords": [
"freesewing",
"plugin",
"sewing pattern",
"sewing",
"design",
"parametric design",
"made to measure",
"diy",
"fashion"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "node build.js",
"cibuild_step1": "node build.js",
"clean": "rimraf dist",
"mbuild": "NO_MINIFY=1 node build.js",
2020-05-10 11:58:02 -05:00
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
"test": "BABEL_ENV=production npx mocha tests/*.test.mjs --require @babel/register",
"vbuild": "VERBOSE=1 node build.js",
"prettier": "npx prettier --write 'src/*.js' 'tests/*.mjs'",
"testci": "BABEL_ENV=production npx mocha tests/*.test.mjs --require @babel/register --reporter ../../tests/reporters/terse.js"
2020-05-10 11:58:02 -05:00
},
"peerDependencies": {
2022-06-15 07:17:45 +02:00
"@freesewing/core": "^2.21.0-alpha.0"
2020-05-10 11:58:02 -05:00
},
2022-05-21 20:34:32 +02:00
"dependencies": {},
"devDependencies": {
2022-05-21 20:34:32 +02:00
"mocha": "^9.1.1",
"chai": "^4.2.0"
},
2020-05-10 11:58:02 -05:00
"files": [
"dist/*",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public",
2022-06-15 07:17:45 +02:00
"tag": "next"
2020-05-10 11:58:02 -05:00
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6"
2020-05-10 11:58:02 -05:00
}
}