2018-07-10 12:21:17 +00:00
|
|
|
{
|
2019-04-20 19:23:22 +02:00
|
|
|
"name": "@freesewing/brian",
|
2022-08-23 13:45:20 +02:00
|
|
|
"version": "3.0.0-alpha.0",
|
2019-04-20 19:23:22 +02:00
|
|
|
"description": "A FreeSewing pattern for a basic body block for menswear",
|
2021-04-11 17:32:58 +02:00
|
|
|
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
|
2019-04-19 17:31:44 +02:00
|
|
|
"homepage": "https://freesewing.org/",
|
|
|
|
"repository": "github:freesewing/freesewing",
|
2018-07-21 16:00:13 +02:00
|
|
|
"license": "MIT",
|
2018-07-24 10:15:37 +00:00
|
|
|
"bugs": {
|
2019-04-19 17:31:44 +02:00
|
|
|
"url": "https://github.com/freesewing/freesewing/issues"
|
2018-07-24 10:15:37 +00:00
|
|
|
},
|
2021-09-02 18:45:47 +02:00
|
|
|
"funding": {
|
|
|
|
"type": "individual",
|
|
|
|
"url": "https://freesewing.org/patrons/join"
|
|
|
|
},
|
2018-07-21 16:00:13 +02:00
|
|
|
"keywords": [
|
|
|
|
"freesewing",
|
2019-04-19 17:31:44 +02:00
|
|
|
"design",
|
|
|
|
"diy",
|
|
|
|
"fashion",
|
|
|
|
"made to measure",
|
|
|
|
"parametric design",
|
2018-07-21 18:51:52 +02:00
|
|
|
"pattern",
|
2018-07-21 16:00:13 +02:00
|
|
|
"sewing",
|
2019-04-19 17:31:44 +02:00
|
|
|
"sewing pattern"
|
2018-07-21 16:00:13 +02:00
|
|
|
],
|
2022-08-24 19:40:31 +02:00
|
|
|
"type": "module",
|
2018-07-26 23:30:43 +02:00
|
|
|
"module": "dist/index.mjs",
|
2022-08-24 19:40:31 +02:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.mjs"
|
|
|
|
},
|
2018-07-10 12:21:17 +00:00
|
|
|
"scripts": {
|
2022-08-29 17:41:00 +02:00
|
|
|
"build": "node build.mjs",
|
2022-06-14 14:00:43 +02:00
|
|
|
"clean": "rimraf dist",
|
2022-08-29 17:41:00 +02:00
|
|
|
"mbuild": "NO_MINIFY=1 node build.mjs",
|
2019-05-25 19:26:02 +02:00
|
|
|
"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",
|
2022-08-29 17:41:00 +02:00
|
|
|
"vbuild": "VERBOSE=1 node build.mjs",
|
2022-06-17 14:12:46 +02:00
|
|
|
"lab": "cd ../../sites/lab && yarn start",
|
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-08-28 14:52:18 +02:00
|
|
|
"prettier": "npx prettier --write 'src/*.mjs' 'tests/*.mjs'",
|
2022-07-15 12:02:07 +02:00
|
|
|
"testci": "npx mocha tests/*.test.mjs --reporter ../../tests/reporters/terse.js",
|
2022-08-29 17:41:00 +02:00
|
|
|
"cibuild_step3": "node build.mjs"
|
2018-07-24 10:15:37 +00:00
|
|
|
},
|
2019-04-13 15:59:10 +02:00
|
|
|
"peerDependencies": {
|
2022-08-23 13:45:20 +02:00
|
|
|
"@freesewing/core": "^3.0.0-alpha.0",
|
|
|
|
"@freesewing/plugin-bundle": "^3.0.0-alpha.0",
|
|
|
|
"@freesewing/config-helpers": "^3.0.0-alpha.0",
|
|
|
|
"@freesewing/plugin-mirror": "^3.0.0-alpha.0",
|
|
|
|
"@freesewing/plugin-bust": "^3.0.0-alpha.0"
|
2018-07-10 19:27:02 +02:00
|
|
|
},
|
2022-05-21 20:34:32 +02:00
|
|
|
"dependencies": {},
|
2019-05-11 08:04:02 +02:00
|
|
|
"devDependencies": {
|
2022-06-22 09:41:07 +02:00
|
|
|
"mocha": "^10.0.0",
|
2022-06-14 14:00:43 +02:00
|
|
|
"chai": "^4.2.0"
|
2019-05-11 08:04:02 +02:00
|
|
|
},
|
2018-07-21 18:51:52 +02:00
|
|
|
"files": [
|
2019-04-29 09:01:51 +02:00
|
|
|
"dist/*",
|
2022-06-22 15:59:13 +02:00
|
|
|
"README.md"
|
2019-04-19 09:53:40 +02:00
|
|
|
],
|
2019-04-19 17:31:44 +02:00
|
|
|
"publishConfig": {
|
2019-04-29 11:12:41 +02:00
|
|
|
"access": "public",
|
2022-08-23 13:45:20 +02:00
|
|
|
"tag": "next"
|
2019-04-19 17:31:44 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-08-24 09:46:42 +02:00
|
|
|
"node": ">=16.0.0",
|
|
|
|
"npm": ">=8"
|
2019-04-30 16:20:43 +02:00
|
|
|
}
|
2018-07-10 12:21:17 +00:00
|
|
|
}
|