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

60 lines
1.8 KiB
JSON
Raw Normal View History

2018-07-09 08:38:58 +00:00
{
"name": "@freesewing/core",
2019-05-11 08:16:37 +02:00
"version": "2.0.0-alpha.27",
"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 && npm run nodebuild && npm run modulebuild",
"test": "BABEL_ENV=production nyc 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 mocha --compilers js:babel-core/register tests/*.test.js",
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"
},
2019-05-11 08:14:49 +02:00
"peerDependencies": {},
"dependencies": {
"bezier-js": "^2.2.13",
"bin-pack": "1.0.2",
"hooks": "^0.3.2"
},
2019-05-11 08:14:49 +02:00
"devDependencies": {},
"files": [
"dist/*",
"README.md",
"package.json"
],
"publishConfig": {
2019-04-29 11:12:41 +02:00
"access": "public",
"tag": "alpha"
2019-04-19 09:53:40 +02:00
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
}
2018-07-09 08:38:58 +00:00
}