postcss
Version:
Tool for transforming styles with JS plugins
89 lines (88 loc) • 2.02 kB
JSON
{
"name": "postcss",
"version": "6.0.5",
"description": "Tool for transforming styles with JS plugins",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"css",
"postcss",
"rework",
"preprocessor",
"parser",
"source map",
"transform",
"manipulation",
"transpiler"
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"homepage": "http://postcss.org/",
"repository": "postcss/postcss",
"dependencies": {
"chalk": "^2.0.1",
"source-map": "^0.5.6",
"supports-color": "^4.1.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-precompile-charcodes": "^1.0.0",
"babel-preset-env": "^1.5.2",
"concat-with-sourcemaps": "^1.0.4",
"del": "^3.0.0",
"docdash": "^0.4.0",
"eslint": "^4.1.1",
"eslint-config-postcss": "^2.0.2",
"fs-extra": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^3.1.0",
"gulp-eslint": "^4.0.0",
"gulp-jest": "^2.0.0",
"gulp-run": "^1.7.1",
"gulp-sourcemaps": "^2.6.0",
"jest": "^20.0.4",
"jsdoc": "^3.4.3",
"lint-staged": "^4.0.0",
"postcss-parser-tests": "^6.0.1",
"pre-commit": "^1.2.2",
"run-sequence": "^2.0.0",
"size-limit": "^0.3.0",
"strip-ansi": "^4.0.0",
"yaspeller-ci": "^0.4.0"
},
"scripts": {
"lint-staged": "lint-staged",
"test": "gulp"
},
"main": "lib/postcss",
"types": "lib/postcss.d.ts",
"lint-staged": {
"test/*.js": "eslint",
"lib/*.es6": "eslint",
"*.md": "yaspeller-ci"
},
"pre-commit": [
"lint-staged"
],
"browser": {
"fs": false
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint-config-postcss",
"rules": {
"consistent-return": "off",
"valid-jsdoc": "error",
"complexity": "off",
"no-new": "off"
},
"env": {
"browser": true,
"jest": true
}
}
}