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

61 lines
1.9 KiB
JSON
Raw Normal View History

2018-07-09 08:38:58 +00:00
{
"name": "@freesewing/core",
2019-05-30 16:03:47 +02:00
"version": "2.0.0-beta.12",
"description": "A library for creating made-to-measure sewing patterns",
"author": "Joost De Cock <joost@decock.org> (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",
"nodebuild": "BABEL_ENV=production rollup -c -o dist/index.js -f cjs",
"modulebuild": "BABEL_ENV=production rollup -c -o dist/index.mjs -f es",
"build": "npm run clean && rollup -c && rollup -c rollup.tests.js",
"testonly": "BABEL_ENV=production mocha tests/*.test.js",
"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 -",
"report": "BABEL_ENV=production nyc report --reporter=html",
2019-05-05 17:06:22 +02:00
"coverage": "BABEL_ENV=production nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
"watch": "BABEL_ENV=production rollup -c -w -o dist/index.mjs -f es"
},
"peerDependencies": {},
"dependencies": {
"bezier-js": "^2.2.13",
"bin-pack": "1.0.2",
"hooks": "^0.3.2"
},
"devDependencies": {},
"files": [
"dist/*",
"README.md",
"package.json"
],
"publishConfig": {
2019-04-29 11:12:41 +02:00
"access": "public",
2019-05-11 08:25:25 +02:00
"tag": "beta"
2019-04-19 09:53:40 +02:00
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
}
2018-07-09 08:38:58 +00:00
}