1
1
mirror of https://github.com/primer/css.git synced 2024-09-20 21:28:20 +03:00
css/package.json

54 lines
1.6 KiB
JSON
Raw Normal View History

{
2016-05-31 18:50:44 +03:00
"version": "4.0.1",
2016-05-25 21:56:43 +03:00
"name": "primer-css",
"description": "Primer is the CSS toolkit that powers GitHub's front-end design. It's purposefully limited to common components to provide our developers with the most flexibility, and to keep GitHub uniquely *GitHubby*. It's built with SCSS, so it's easy to include all or part of it within your own project.",
2016-05-31 17:21:23 +03:00
"homepage": "http://primercss.io/",
"author": "GitHub, Inc.",
"license": "MIT",
2016-05-25 21:56:43 +03:00
"style": "index.scss",
"files": [
"index.scss",
"lib"
],
"repository": "https://github.com/primer/primer.git",
"bugs": {
"url": "https://github.com/primer/primer/issues"
},
"scripts": {
2016-05-25 21:56:43 +03:00
"build": "npm run setup && npm run preprocess",
2016-05-25 22:03:56 +03:00
"stats": "parker build/build.css > .primer-stats.txt",
2016-05-25 21:56:43 +03:00
"preprocess": "node-sass index.scss --include-path node_modules | postcss -c .postcss.json -o build/build.css && npm run stats",
"setup": "npm install",
"preversion": "npm run build",
"test": "npm run build"
},
"dependencies": {
"primer-alerts": "*",
"primer-avatars": "*",
2016-05-31 18:50:27 +03:00
"primer-base": "*",
2016-05-25 21:56:43 +03:00
"primer-blankslate": "*",
2016-05-31 18:50:27 +03:00
"primer-buttons": "*",
"primer-flex-table": "*",
"primer-forms": "*",
"primer-layout": "*",
2016-05-25 21:56:43 +03:00
"primer-navigation": "*",
"primer-states": "*",
2016-05-31 18:50:27 +03:00
"primer-support": "*",
2016-05-25 21:56:43 +03:00
"primer-tooltips": "*",
2016-05-31 18:50:27 +03:00
"primer-truncate": "*",
"primer-utilities": "*"
2016-05-25 21:56:43 +03:00
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"node-sass": "^3.7.0",
"parker": "0.0.10",
"postcss-cli": "^2.5.2"
},
"keywords": [
"primer",
"css",
"github",
"primercss"
2016-05-25 21:56:43 +03:00
]
}