63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@freesewing/core",
|
|
"version": "2.17.4",
|
|
"description": "A library for creating made-to-measure sewing patterns",
|
|
"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"
|
|
},
|
|
"keywords": [
|
|
"freesewing",
|
|
"design",
|
|
"diy",
|
|
"fashion",
|
|
"made to measure",
|
|
"library",
|
|
"parametric design",
|
|
"patterns",
|
|
"sewing",
|
|
"sewing patterns"
|
|
],
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "rollup -c",
|
|
"test": "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js",
|
|
"pubtest": "npm publish --registry http://localhost:6662",
|
|
"pubforce": "npm publish",
|
|
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
|
|
"start": "rollup -c -w",
|
|
"testonly": "BABEL_ENV=production mocha tests/*.test.js",
|
|
"report": "BABEL_ENV=production nyc report --reporter=html",
|
|
"coverage": "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
|
},
|
|
"peerDependencies": {},
|
|
"dependencies": {
|
|
"bezier-js": "^4.1.1",
|
|
"bin-pack": "^1.0.2",
|
|
"hooks": "^0.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"nyc": "^15.1.0"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"tag": "latest"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0",
|
|
"npm": ">=6"
|
|
},
|
|
"rollup": {
|
|
"exports": "default"
|
|
}
|
|
}
|