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

48 lines
1.4 KiB
JSON
Raw Normal View History

2019-04-19 08:25:14 +02:00
{
"name": "@freesewing/css-theme",
2019-05-11 08:05:11 +02:00
"version": "2.0.0-alpha.26",
"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/theme.css",
"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": "npx node-sass --output-style compressed src/theme.scss dist/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",
"pubforce": "npm publish",
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
"watch": "npx node-sass --watch --output-style compressed src/theme.scss dist/theme.css"
},
"dependencies": {
"open-color": "1.6.3"
},
2019-04-19 08:25:14 +02:00
"files": [
"dist/*",
2019-04-19 08:25:14 +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"
}
2019-04-19 08:25:14 +02:00
}