1
0
Fork 0
freesewing/packages/components/package.json
2019-04-20 19:50:37 +02:00

42 lines
1.2 KiB
JSON

{
"name": "@freesewing/components",
"version": "0.33.0",
"description": "A collection of React components for FreeSewing web UIs",
"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",
"react"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"clean": "rimraf ../../dist/components",
"nodebuild": "BABEL_ENV=production rollup -c -o ../../dist/components/index.js -f cjs",
"modulebuild": "BABEL_ENV=production rollup -c -o ../../dist/components/index.mjs -f es",
"build": "./scripts/build.sh",
"test": "echo \"components: No tests configured. Perhaps you'd like to do this?\" && exit 0",
"pubtest": "npm publish --registry http://localhost:6662"
},
"peerDependencies": {
"react": "^16.4.1",
"prop-types": "15.7.2"
},
"files": [
"../../dist/packages/components/*",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
}
}