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

46 lines
1.4 KiB
JSON
Raw Normal View History

2019-04-19 08:25:14 +02:00
{
"name": "@freesewing/css-theme",
"version": "0.33.0",
"description": "A CSS theme for FreeSewing web UIs",
2019-04-19 08:25:14 +02:00
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
2019-04-19 08:25:14 +02:00
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
2019-04-19 08:25:14 +02:00
},
"keywords": [
"freesewing",
"css",
"scss",
"sass",
"theme"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"clean": "rimraf ../../dist/css-theme",
"nodebuild": "BABEL_ENV=production rollup -c -o ../../dist/css-theme/index.js -f cjs",
"modulebuild": "BABEL_ENV=production rollup -c -o ../../dist/css-theme/index.mjs -f es",
"watch": "npx node-sass --watch --output-style compressed src/theme.scss ../../dist/css-theme/theme.css",
"build": "npx node-sass --output-style compressed src/theme.scss ../../dist/css-theme/theme.css",
"test": "echo \"css-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
"pubtest": "npm publish --registry http://localhost:6662"
},
"dependencies": {
"open-color": "1.6.3"
},
2019-04-19 08:25:14 +02:00
"files": [
"../../dist/packages/css-theme/*",
2019-04-19 08:25:14 +02:00
"README.md",
"package.json"
2019-04-19 09:53:40 +02:00
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
}
2019-04-19 08:25:14 +02:00
}