2018-07-09 08:38:58 +00:00
|
|
|
{
|
2019-04-20 19:23:22 +02:00
|
|
|
"name": "@freesewing/core",
|
2025-04-01 16:15:20 +02:00
|
|
|
"version": "4.0.0",
|
2019-04-20 19:23:22 +02:00
|
|
|
"description": "A library for creating made-to-measure sewing patterns",
|
2021-04-11 17:32:58 +02:00
|
|
|
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
|
2018-07-26 22:14:42 +02:00
|
|
|
"homepage": "https://freesewing.org/",
|
2019-04-19 17:31:44 +02:00
|
|
|
"repository": "github:freesewing/freesewing",
|
2018-07-26 22:14:42 +02:00
|
|
|
"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"
|
|
|
|
},
|
2019-04-19 17:31:44 +02:00
|
|
|
"keywords": [
|
|
|
|
"freesewing",
|
|
|
|
"design",
|
|
|
|
"diy",
|
|
|
|
"fashion",
|
|
|
|
"made to measure",
|
|
|
|
"library",
|
|
|
|
"parametric design",
|
|
|
|
"patterns",
|
|
|
|
"sewing",
|
|
|
|
"sewing patterns"
|
|
|
|
],
|
2022-08-24 19:40:31 +02:00
|
|
|
"type": "module",
|
2025-04-01 16:15:20 +02:00
|
|
|
"module": "src/index.mjs",
|
2022-08-24 19:40:31 +02:00
|
|
|
"exports": {
|
2025-04-01 16:15:20 +02:00
|
|
|
".": "./src/index.mjs"
|
2022-08-24 19:40:31 +02:00
|
|
|
},
|
2019-04-20 15:36:31 +02:00
|
|
|
"scripts": {
|
2019-05-02 12:40:03 +02:00
|
|
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
2022-09-09 20:20:38 +02:00
|
|
|
"test": "c8 mocha tests/*.test.mjs",
|
2022-06-17 18:23:17 +02:00
|
|
|
"tips": "node ../../scripts/help.mjs",
|
2022-09-15 07:53:35 +02:00
|
|
|
"lint": "npx eslint 'src/*.mjs' 'tests/*.mjs'",
|
2022-09-09 20:20:38 +02:00
|
|
|
"report": "c8 report",
|
2022-11-16 09:59:51 -06:00
|
|
|
"testci": "c8 mocha tests/*.test.mjs",
|
2022-09-09 20:20:38 +02:00
|
|
|
"prettier": "npx prettier --write 'src/*.mjs' 'tests/*.mjs'",
|
2025-04-01 16:15:20 +02:00
|
|
|
"jsdoc": "jsdoc -c jsdoc.json -r src"
|
2019-04-20 15:36:31 +02:00
|
|
|
},
|
2022-05-21 20:34:32 +02:00
|
|
|
"peerDependencies": {},
|
2019-04-20 15:36:31 +02:00
|
|
|
"dependencies": {
|
2025-04-01 16:15:20 +02:00
|
|
|
"@freesewing/core-plugins": "4.0.0",
|
2023-07-17 05:00:30 +00:00
|
|
|
"bezier-js": "6.1.4",
|
2022-12-23 15:25:39 +01:00
|
|
|
"hooks": "0.3.2",
|
2022-12-17 16:49:58 +01:00
|
|
|
"lodash.get": "4.4.2",
|
|
|
|
"lodash.set": "4.3.2",
|
2023-02-07 16:59:20 -06:00
|
|
|
"lodash.unset": "4.5.2",
|
|
|
|
"lodash.clonedeep": "^4.5.0"
|
2019-04-20 15:36:31 +02:00
|
|
|
},
|
2021-04-23 17:57:46 +02:00
|
|
|
"devDependencies": {
|
2024-02-26 04:37:25 +00:00
|
|
|
"eslint": "8.57.0",
|
2024-10-26 11:24:47 +02:00
|
|
|
"nyc": "17.1.0",
|
|
|
|
"mocha": "10.4.0",
|
2024-05-10 05:00:32 +00:00
|
|
|
"chai": "5.1.1",
|
2024-05-23 16:05:08 +00:00
|
|
|
"sinon": "^18.0.0"
|
2021-04-23 17:57:46 +02:00
|
|
|
},
|
2018-07-23 14:18:53 +00:00
|
|
|
"files": [
|
2025-04-01 16:15:20 +02:00
|
|
|
"src/",
|
|
|
|
"i18n/",
|
|
|
|
"about.json",
|
2022-06-22 15:59:13 +02:00
|
|
|
"README.md"
|
2018-08-15 18:49:55 +02:00
|
|
|
],
|
2019-04-19 17:31:44 +02:00
|
|
|
"publishConfig": {
|
2019-04-29 11:12:41 +02:00
|
|
|
"access": "public",
|
2025-04-01 16:15:20 +02:00
|
|
|
"tag": "latest"
|
2019-04-19 09:53:40 +02:00
|
|
|
},
|
2019-04-19 17:31:44 +02:00
|
|
|
"engines": {
|
2025-04-01 16:15:20 +02:00
|
|
|
"node": ">= 20"
|
2019-04-30 16:20:43 +02:00
|
|
|
}
|
2025-04-21 18:20:52 +02:00
|
|
|
}
|