{
  "name": "css-to-ts",
  "version": "1.0.1",
  "description": "css-to-ts takes a css file and outputs a TypeScript file with an exported string containing a content of your css file.",
  "main": "dist/index.js",
  "types": "@types/index.d.ts",
  "scripts": {
    "build": "tsc -p .",
    "tslint": "tslint --project . --config ./tslint.json",
    "watch": "tsc -w",
    "test": "tsc -p . --noEmit && npm run tslint",
    "release": "npm run build && npm run tslint"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SimplrJS/css-to-ts.git"
  },
  "keywords": [
    "SimplrJS",
    "css",
    "Cascading",
    "Style",
    "Sheets",
    "ts",
    "Typescript",
    "css-to-ts"
  ],
  "files": [
    "dist",
    "@types",
    "*.md",
    "LICENSE"
  ],
  "author": "SimplrJS <simplr@quatrodev.com> (https://github.com/SimplrJS)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/SimplrJS/css-to-ts/issues"
  },
  "homepage": "https://github.com/SimplrJS/css-to-ts",
  "devDependencies": {
    "tslint": "^5.8.0",
    "typescript": "^2.6.1"
  },
  "dependencies": {
    "@types/chokidar": "^1.7.3",
    "@types/fs-extra": "^4.0.3",
    "@types/globby": "^6.1.0",
    "@types/yargs": "^6.6.0",
    "chokidar": "^1.6.1",
    "fs-extra": "^4.0.2",
    "globby": "^6.1.0",
    "yargs": "^7.1.0"
  },
  "engine": "node >= 7.5.0",
  "bin": {
    "css-to-ts": "./dist/cli.js"
  }
}
