1
1
mirror of https://github.com/primer/css.git synced 2024-10-04 04:17:21 +03:00
css/package.json

112 lines
3.1 KiB
JSON
Raw Normal View History

{
"name": "@primer/css",
"version": "21.0.7",
"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.",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"license": "MIT",
"style": "dist/primer.css",
"sass": "index.scss",
"type": "module",
"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": {
"build:docs": "script/build-docs",
"build:docs:preview": "script/build-docs preview",
2022-08-13 01:17:56 +03:00
"build:css": "script/build-css.js",
2019-09-10 21:23:05 +03:00
"dist": "script/dist.js",
2022-08-13 01:17:56 +03:00
"dist:watch": "chokidar \"src/**/*.scss\" -c \"script/dist.js\"",
"stylelint": "stylelint --quiet --rd 'src/**/*.scss'",
"stylelint:fix": "yarn stylelint -- --fix",
"stylelint:remove-disables": "script/stylelint-remove-disables.js 'src/**/*.scss'",
"stylelint:add-disables": "script/stylelint-add-disables.js 'src/**/*.scss'",
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",
2021-04-12 06:39:17 +03:00
"start": "yarn dev",
"dev": "cd docs && yarn && yarn develop",
2021-04-01 08:40:51 +03:00
"pretest": "yarn dist && script/pretest",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest",
2021-10-15 00:21:02 +03:00
"release": "changeset publish",
"storybook": "cd docs && yarn && yarn storybook"
2016-05-25 21:56:43 +03:00
},
"dependencies": {
"@primer/primitives": "^7.11.12",
"@primer/view-components": "^0.1.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@csstools/postcss-sass": "5.0.1",
"@github/prettier-config": "0.0.6",
"@primer/stylelint-config": "^12.7.1",
"autoprefixer": "10.4.13",
"chokidar-cli": "3.0.0",
"cssstats": "4.0.5",
"eslint": "8.37.0",
"eslint-plugin-github": "4.6.0",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-prettier": "4.2.1",
"filesize": "10.0.5",
2021-04-12 19:42:42 +03:00
"front-matter": "4.0.2",
"fs-extra": "11.1.0",
"globby": "13.1.4",
"jest": "29.5.0",
"js-yaml": "4.1.0",
"postcss": "8.4.5",
"postcss-calc": "8.2.4",
"postcss-import": "15.0.0",
"postcss-load-config": "4.0.1",
"postcss-scss": "4.0.5",
"postcss-simple-vars": "7.0.1",
"postcss-custom-properties-fallback": "^1.0.2",
"prettier": "2.8.8",
"semver": "7.3.8",
"stylelint": "15.7.0",
"table": "6.8.1"
2021-03-30 08:10:34 +03:00
},
"jest": {
2021-03-31 02:53:47 +03:00
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/utils/",
"/__tests__/docs.test.js"
],
"transform": {}
},
"browserslist": [
"last 10 Chrome versions",
"last 4 Firefox versions",
"last 3 Safari versions",
"not Safari 12",
"last 4 Edge versions",
"not Edge <= 18",
"Firefox ESR"
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
}
}
}