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

47 lines
1.4 KiB
JSON
Raw Normal View History

2019-04-16 19:18:42 +02:00
{
"name": "@freesewing/mui-theme",
2019-04-19 10:16:29 +02:00
"version": "0.33.0",
2019-04-16 19:18:42 +02:00
"description": "A Material-UI theme for freesewing web UIs",
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/freesewing/mui-theme.git"
},
"bugs": {
"url": "https://github.com/freesewing/mui-theme/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"patch": "npm version patch -m ':bookmark: v%s' && npm run build",
"minor": "npm version minor -m ':bookmark: v%s' && npm run build",
"major": "npm version major -m ':bookmark: v%s' && npm run build",
"precommit": "npm run pretty && lint-staged",
"clean": "rimraf dist",
"pretty": "npx prettier --write 'src/*.js'",
"lint": "eslint --fix 'src/*.js'",
"nodebuild": "rollup --silent -c -o dist/index.js -f cjs -e bezier-js,bin-pack",
"modulebuild": "rollup --silent -c -o dist/index.mjs -f esm",
"build": "npm run clean && npm run nodebuild && npm run modulebuild"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"files": [
"dist/*",
"README.md",
"package.json"
2019-04-19 09:53:40 +02:00
],
"gitHead": "db3d4df92285ac8889fa72fba68c970ffcd59775"
2019-04-16 19:18:42 +02:00
}