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

51 lines
1.2 KiB
JSON
Raw Normal View History

2018-07-10 18:31:32 +02:00
{
"name": "@freesewing/models",
"version": "4.0.0",
2025-04-21 18:20:52 +02:00
"description": "Body measurements data used to test FreeSewing designs",
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",
2018-08-09 18:25:06 +02:00
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
2018-08-09 18:25:06 +02:00
},
2021-09-02 18:45:47 +02:00
"funding": {
"type": "individual",
"url": "https://freesewing.org/patrons/join"
},
2018-08-09 18:25:06 +02:00
"keywords": [
"freesewing",
"bodies",
"data",
"fashion",
"measurements",
"sizes"
2018-08-09 18:25:06 +02:00
],
"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-08-28 19:51:15 +02:00
"test": "npx mocha tests/*.test.mjs",
"tips": "node ../../scripts/help.mjs",
"lint": "npx eslint 'src/**' 'tests/*.mjs'"
},
2022-10-09 02:44:19 +02:00
"peerDependencies": {},
2022-05-21 20:34:32 +02:00
"dependencies": {},
"devDependencies": {},
2018-08-09 18:25:06 +02:00
"files": [
"src/",
"i18n/",
"about.json",
2022-06-22 15:59:13 +02:00
"README.md"
2019-04-19 09:53:40 +02:00
],
"publishConfig": {
2019-04-29 11:12:41 +02:00
"access": "public",
"tag": "latest"
},
"engines": {
"node": ">= 20"
}
2025-04-21 18:20:52 +02:00
}