108 lines
2.4 KiB
JSON
108 lines
2.4 KiB
JSON
{
|
|
"name": "postcss-safe-parser",
|
|
"version": "4.0.1",
|
|
"description": "Fault-tolerant CSS parser for PostCSS",
|
|
"keywords": [
|
|
"css",
|
|
"postcss",
|
|
"postcss-syntax",
|
|
"parser",
|
|
"fault tolerant"
|
|
],
|
|
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
|
"license": "MIT",
|
|
"repository": "postcss/postcss-safe-parser",
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"postcss": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.3",
|
|
"babel-eslint": "^8.2.6",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-plugin-precompile-charcodes": "^1.1.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"del": "^3.0.0",
|
|
"eslint": "^5.1.0",
|
|
"eslint-config-logux": "^23.0.2",
|
|
"eslint-config-postcss": "^3.0.2",
|
|
"eslint-config-standard": "^11.0.0",
|
|
"eslint-plugin-import": "^2.13.0",
|
|
"eslint-plugin-jest": "^21.17.0",
|
|
"eslint-plugin-node": "^6.0.1",
|
|
"eslint-plugin-promise": "^3.8.0",
|
|
"eslint-plugin-security": "^1.4.0",
|
|
"eslint-plugin-standard": "^3.1.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^7.0.1",
|
|
"gulp-changed": "^3.2.0",
|
|
"gulp-eslint": "^5.0.0",
|
|
"gulp-jest": "^4.0.2",
|
|
"gulp-sourcemaps": "^2.6.4",
|
|
"jest": "^23.4.1",
|
|
"jest-cli": "^23.4.1",
|
|
"lint-staged": "^7.2.0",
|
|
"postcss-parser-tests": "^6.3.0",
|
|
"pre-commit": "^1.1.3",
|
|
"run-sequence": "^2.2.1"
|
|
},
|
|
"scripts": {
|
|
"lint-staged": "lint-staged",
|
|
"test": "gulp"
|
|
},
|
|
"eslintConfig": {
|
|
"parser": "babel-eslint",
|
|
"extends": "eslint-config-postcss",
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"gulpfile.js"
|
|
],
|
|
"rules": {
|
|
"node/no-unpublished-require": "off",
|
|
"global-require": "off"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"modulePathIgnorePatterns": [
|
|
"<rootDir>/build"
|
|
]
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
[
|
|
"env",
|
|
{
|
|
"targets": {
|
|
"browsers": [
|
|
"last 2 version",
|
|
"not dead",
|
|
"not Explorer 11",
|
|
"not ExplorerMobile 11"
|
|
],
|
|
"node": 6
|
|
},
|
|
"loose": true
|
|
}
|
|
]
|
|
],
|
|
"plugins": [
|
|
"add-module-exports",
|
|
"precompile-charcodes"
|
|
]
|
|
},
|
|
"main": "lib/safe-parse",
|
|
"lint-staged": {
|
|
"test/*.js": "eslint",
|
|
"lib/*.es6": "eslint"
|
|
},
|
|
"pre-commit": [
|
|
"lint-staged"
|
|
]
|
|
}
|