Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 39 lines (39 sloc) 1.04 KB
{
"name": "orbitcss",
"version": "2.0.0",
"description": "Flexbox based CSS framework",
"main": "orbit.scss",
"homepage": "https://orbitcss.com",
"repository": {
"type": "git",
"url": "git@github.com:OrbitCSS/orbitcss.git"
},
"bugs": {
"url": "https://github.com/OrbitCSS/orbitcss/issues"
},
"scripts": {
"build:sass": "sass --style expanded orbit.scss css/orbit.css",
"build:clean": "cleancss -o css/orbit.min.css css/orbit.css",
"build:autoprefixer": "postcss --use autoprefixer --map false --output css/orbit.css css/orbit.css",
"build": "npm-run-all build:sass build:autoprefixer build:clean",
"start": "npm run build:sass -- --watch"
},
"author": "Rhys Hall <hello@rhyshall.com>",
"license": "MIT",
"keywords": [
"css",
"scss",
"flexbox",
"framework",
"sass",
"orbitcss"
],
"devDependencies": {
"autoprefixer": "^10.3.7",
"clean-css-cli": "^5.4.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.10",
"postcss-cli": "^9.0.1",
"sass": "^1.43.2"
}
}