{
  "name": "@tiny-css/compiler",
  "version": "0.1.1",
  "description": "The compiler for compiling & reducing the bundle size of tiny-css",
  "main": "./lib/index.js",
  "scripts": {
    "start": "node lib/index.js",
    "dev": "npx nodemon --watch \"./**\" --ext \"ts,json\" --ignore \"src/**/*.test.ts\" --exec \"npx ts-node index.ts\"",
    "lint": "npx eslint ./ --ext .ts",
    "prebuild": "rimraf lib",
    "build": "npx tsc",
    "test": "npx jest",
    "posttest": "npm run lint",
    "prepublishOnly": "npm run test && npm run build"
  },
  "bin": {
    "tiny-css": "./lib/index.js",
    "tcss": "./lib/index.js"
  },
  "directories": {
    "lib": "./lib",
    "test": "./lib/src/__test__",
    "example": "./example"
  },
  "engines": {
    "node": ">=11.0.0"
  },
  "engineStrict": true,
  "files": [
    "/lib",
    "/__test_assets__"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tiny-css/compiler.git"
  },
  "keywords": [
    "CSS",
    "FRAMEWORK",
    "COMPILED",
    "JavaScript",
    "Typescript"
  ],
  "dependencies": {
    "chalk": "^4.1.0",
    "css": "^3.0.0",
    "glob": "^7.1.6",
    "is-url": "^1.2.4",
    "node-fetch": "^2.6.1",
    "node-html-parser": "^2.0.0",
    "yargs": "^15.4.1"
  },
  "devDependencies": {
    "@types/css": "0.0.31",
    "@types/glob": "^7.1.3",
    "@types/is-url": "^1.2.28",
    "@types/node": "^14.14.7",
    "@types/node-fetch": "^2.5.7",
    "@typescript-eslint/eslint-plugin": "^4.4.1",
    "eslint": "^7.14.0",
    "eslint-config-airbnb-typescript": "^12.0.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.1.3",
    "eslint-plugin-promise": "^4.2.1",
    "jest": "^26.6.3",
    "nodemon": "^2.0.3",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.4.4",
    "ts-node": "^9.0.0",
    "typescript": "^4.0.5"
  },
  "author": "KRTirtho",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tiny-css/compiler/issues"
  },
  "homepage": "https://github.com/tiny-css/compiler#readme"
}
