1
0
Fork 0
freesewing/designs/hortensia/package.json

63 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "@freesewing/hortensia",
"version": "4.0.0",
"description": "A FreeSewing pattern for a handbag",
2021-04-11 17:32:58 +02:00
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
"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"
},
"keywords": [
"freesewing",
"design",
"diy",
"fashion",
"made to measure",
"parametric design",
"pattern",
"sewing",
"sewing pattern"
],
"type": "module",
"module": "src/index.mjs",
"exports": {
".": "./src/index.mjs"
},
"scripts": {
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
2022-07-15 12:02:07 +02:00
"test": "npx mocha tests/*.test.mjs",
"tips": "node ../../scripts/help.mjs",
2022-09-15 10:23:06 +02:00
"lint": "npx eslint 'src/**' 'tests/*.mjs'",
2022-08-29 08:31:23 +02:00
"prettier": "npx prettier --write 'src/*.mjs' 'tests/*.mjs'",
"testci": "NODE_OPTIONS=\"--conditions=internal\" npx mocha tests/*.test.mjs --reporter ../../tests/reporters/terse.js"
},
"peerDependencies": {
"@freesewing/core": "4.0.0"
},
2022-05-21 20:34:32 +02:00
"dependencies": {},
"devDependencies": {
2024-10-26 11:24:47 +02:00
"mocha": "10.4.0",
"chai": "5.1.1",
"@freesewing/models": "4.0.0",
"@freesewing/plugin-timing": "4.0.0"
},
"files": [
"src/",
"i18n/",
"about.json",
2022-06-22 15:59:13 +02:00
"README.md"
],
"publishConfig": {
"access": "public",
"tag": "latest"
},
"engines": {
"node": ">= 20"
}
2025-04-21 18:20:52 +02:00
}