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

99 lines
2.5 KiB
JSON
Raw Normal View History

{
"name": "@primer/css",
2021-04-07 02:05:43 +03:00
"version": "16.2.0",
"description": "The CSS implementation of GitHub's Primer Design System",
2019-03-06 08:40:34 +03:00
"homepage": "https://primer.style/css",
"author": "GitHub, Inc.",
"license": "MIT",
"style": "dist/primer.css",
"sass": "index.scss",
"main": "dist/primer.js",
"repository": "https://github.com/primer/css",
"bugs": {
"url": "https://github.com/primer/css/issues"
},
"keywords": [
"primer",
"css",
"github",
"design-system"
],
"scripts": {
2019-09-10 21:23:05 +03:00
"dist": "script/dist.js",
"stylelint": "stylelint --quiet src",
2021-04-07 18:33:42 +03:00
"eslint": "eslint deprecations.js __tests__ script",
2021-03-26 00:16:57 +03:00
"prepublishOnly": "script/prepublish",
2019-07-30 02:56:17 +03:00
"start": "npm run dev",
2019-08-13 01:33:06 +03:00
"dev": "cd docs && npm install && npm run develop",
2021-04-01 08:40:51 +03:00
"pretest": "yarn dist && script/pretest",
2021-03-28 08:50:24 +03:00
"test": "jest",
2021-03-22 07:50:54 +03:00
"release": "changeset publish"
2016-05-25 21:56:43 +03:00
},
"dependencies": {
"@primer/octicons": "13.0.0",
2021-04-06 10:22:53 +03:00
"@primer/primitives": "4.2.0"
},
"devDependencies": {
2021-03-25 23:12:06 +03:00
"@changesets/changelog-github": "^0.3.0",
2021-03-22 07:50:54 +03:00
"@changesets/cli": "^2.14.1",
"@github/prettier-config": "^0.0.4",
"autoprefixer": "^10.2.5",
2020-08-10 20:34:46 +03:00
"colorette": "^1.2.1",
"cssstats": "^4.0.2",
2021-03-27 02:46:41 +03:00
"eslint": "^7.23.0",
2021-04-07 18:33:42 +03:00
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"filesize": "^6.1.0",
"front-matter": "^4.0.2",
"fs-extra": "^9.1.0",
"globby": "^11.0.3",
"jest": "^26.6.3",
"js-yaml": "^4.0.0",
"minimist": "^1.2.3",
"node-fetch": "^2.6.1",
"postcss": "^8.2.9",
"postcss-import": "^12.0.1",
"postcss-load-config": "^3.0.1",
2020-08-10 20:34:46 +03:00
"postcss-loader": "^3.0.0",
"postcss-node-sass": "^2.1.8",
"postcss-scss": "^3.0.5",
2020-08-10 20:34:46 +03:00
"postcss-value-parser": "^4.1.0",
"prettier": "2.2.1",
"semver": "^5.7.1",
"stylelint": "^13.12.0",
"stylelint-config-primer": "^11.0.1",
2019-11-01 01:05:43 +03:00
"stylelint-scss": "^3.12.0",
"table": "^5.2.3"
2021-03-30 08:10:34 +03:00
},
"jest": {
2021-03-31 02:53:47 +03:00
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/utils/"
]
},
"browserslist": [
"> 5%",
"last 2 firefox versions",
"last 2 chrome versions",
"last 2 safari versions",
"last 2 edge versions",
"ie 11"
2021-04-06 06:35:12 +03:00
],
"eslintConfig": {
2021-04-07 18:33:42 +03:00
"extends": [
"plugin:github/internal",
"plugin:github/recommended"
],
2021-04-06 06:35:12 +03:00
"env": {
2021-04-07 18:33:42 +03:00
"es6": true,
"node": true
2021-04-06 06:35:12 +03:00
},
"parserOptions": {
2021-04-07 18:33:42 +03:00
"ecmaVersion": 2017,
"requireConfigFile": false
}
}
}