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

49 lines
1.3 KiB
JSON
Raw Normal View History

2018-08-10 16:03:39 +02:00
{
"name": "@freesewing/plugin-validate",
2019-04-29 10:47:02 +02:00
"version": "2.0.0-alpha.0",
"description": "A FreeSewing plugin that validates aspects of your code",
2018-08-10 16:03:39 +02:00
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
2018-08-10 16:03:39 +02:00
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
2018-08-10 16:03:39 +02:00
},
"keywords": [
"freesewing",
"plugin",
"sewing pattern",
2018-08-10 16:03:39 +02:00
"sewing",
"design",
"parametric design",
"made to measure",
"diy",
"fashion"
2018-08-10 16:03:39 +02:00
],
"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": "echo \"plugin-validate: No tests configured. Perhaps you'd like to do this?\" && exit 0",
"pubtest": "npm publish --registry http://localhost:6662"
2018-08-10 16:03:39 +02:00
},
"peerDependencies": {
"@freesewing/core": "^0.32.4"
2018-08-10 16:03:39 +02:00
},
"files": [
"dist/*",
2018-08-10 16:03:39 +02:00
"README.md",
"package.json"
2019-04-19 09:53:40 +02:00
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
}
2018-08-10 16:03:39 +02:00
}