{
    "name": "detective-postcss",
    "version": "4.0.0",
    "description": "Detective to find dependents of CSS (PostCSS dialect)",
    "main": "dist/index.js",
    "repository": "git://github.com/joscha/node-detective-postcss.git",
    "author": "Joscha Feth <joscha@feth.com>",
    "license": "Apache-2.0",
    "engines": {
        "node": "^10 || ^12 || >=14"
    },
    "dependencies": {
        "debug": "^4.1.1",
        "is-url": "^1.2.4",
        "postcss": "^8.1.7",
        "postcss-values-parser": "^2.0.1"
    },
    "devDependencies": {
        "@types/debug": "^0.0.30",
        "@types/is-url": "^1.2.28",
        "@types/jest": "^26.0.15",
        "husky": "^0.14.3",
        "jest": "^26.6.3",
        "lint-staged": "^7.2.0",
        "prettier": "^1.14.0",
        "ts-jest": "^26.4.4",
        "typescript": "^4.0.5"
    },
    "scripts": {
        "prepare": "tsc --outDir dist --declaration --declarationDir dist",
        "test": "jest --ci",
        "test:watch": "jest --watch --notify",
        "precommit": "lint-staged"
    },
    "lint-staged": {
        "*.{ts,json,md}": [
            "prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"",
            "git add"
        ]
    },
    "jest": {
        "transform": {
            "^.+\\.tsx?$": "ts-jest"
        },
        "testEnvironment": "node",
        "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
        "moduleFileExtensions": [
            "ts",
            "tsx",
            "js",
            "jsx",
            "json",
            "node"
        ]
    },
    "typings": "dist/index.d.ts"
}
