This repository has been archived by the owner on May 30, 2023. It is now read-only.
Permalink
Cannot retrieve contributors at this time
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?
orbitcss/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
39 lines (39 sloc)
1.04 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
} | |
} |