1
0
Fork 0
freesewing/packages/plugin-measurements/package.json

67 lines
1.8 KiB
JSON
Raw Normal View History

{
"name": "@freesewing/plugin-measurements",
2021-11-13 14:59:43 +01:00
"version": "2.19.5",
"description": "A FreeSewing plugin that adds additional measurements that can be calculated from existing ones",
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",
"plugin",
"sewing pattern",
"sewing",
"design",
"parametric design",
"made to measure",
"diy",
"fashion"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"clean": "rimraf dist",
2020-08-08 17:20:08 +02:00
"build": "rollup -c",
2021-10-06 18:52:56 +02:00
"lernabuild": "rollup -c",
"test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register",
"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",
"testci": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register",
"prettier": "npx prettier --write 'src/*.js' 'tests/*.mjs'"
},
"peerDependencies": {
2021-11-13 14:59:43 +01:00
"@freesewing/core": "^2.19.5"
},
2021-04-11 17:32:58 +02:00
"dependencies": {},
"devDependencies": {
"mocha": "^9.1.1",
"chai": "^4.2.0",
"@babel/register": "^7.10.5"
},
"files": [
"dist/*",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public",
2021-10-17 17:37:58 +02:00
"tag": "latest"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6"
2020-08-08 17:20:08 +02:00
},
"rollup": {
"exports": "default"
}
}