1
0
Fork 0
freesewing/packages/mui-theme/package.json

49 lines
1.4 KiB
JSON
Raw Normal View History

2019-04-16 19:18:42 +02:00
{
"name": "@freesewing/mui-theme",
2019-04-29 11:22:53 +02:00
"version": "2.0.0-alpha.1",
"description": "A Material-UI theme for FreeSewing web UIs",
2019-04-16 19:18:42 +02:00
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
2019-04-16 19:18:42 +02:00
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
2019-04-16 19:18:42 +02:00
},
"keywords": [
"freesewing",
"material-ui",
"react",
"theme"
],
2019-04-16 19:18:42 +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 \"mui-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
2019-04-29 11:12:41 +02:00
"pubtest": "npm publish --registry http://localhost:6662",
"publish": "npm build && npm publish --access=public --tag=alpha"
},
"peerDependencies": {
"@material-ui/core": "^3.9.3",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
2019-04-16 19:18:42 +02:00
"files": [
"dist/*",
2019-04-16 19:18:42 +02:00
"README.md",
"package.json"
2019-04-19 09:53:40 +02:00
],
"publishConfig": {
2019-04-29 11:12:41 +02:00
"access": "public",
"tag": "alpha"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
},
"gitHead": "ee46f5da1e20eff4dcccc4bbac6a5bb2d3053f3d"
2019-04-16 19:18:42 +02:00
}