{
  "name": "atom-one-chroma",
  "version": "2.0.0",
  "description": "Atom One Syntax Highlighting for Chroma",
  "author": "Josh Habdas <jhabdas@protonmail.com>",
  "keywords": [
    "chroma",
    "syntax",
    "pygments",
    "atom"
  ],
  "repository": {
    "type": "git",
    "url": "https://git.habd.as/comfusion/atom-one-chroma.git"
  },
  "scripts": {
    "build": "npm run clean && npm run build:dark && npm run build:light",
    "build:dark": "npm run clean:temp && npm run cp:dark && npm run compile:dark",
    "build:light": "npm run clean:temp && npm run cp:light && npm run compile:light",
    "cp:dark": "cp -r node_modules/one-dark-syntax/styles/ temp",
    "cp:light": "cp -r node_modules/one-light-syntax/styles/ temp",
    "compile:dark": "cp styles.less temp/ && lessc temp/styles.less dist/dark.css --clean-css",
    "compile:light": "cp styles.less temp/ && lessc temp/styles.less dist/light.css --clean-css",
    "clean": "npm run clean:dist && npm run clean:temp",
    "clean:dist": "rimraf dist",
    "clean:temp": "rimraf temp",
    "release": "standard-version --sign"
  },
  "standard-version": {
    "scripts": {
      "prerelease": "npm run build"
    }
  },
  "devDependencies": {
    "less": "^3.5.3",
    "less-plugin-clean-css": "^1.5.1",
    "one-dark-syntax": "github:atom/one-dark-syntax",
    "one-light-syntax": "github:atom/one-light-syntax",
    "rimraf": "^2.6.1",
    "standard-version": "^4.4.0"
  },
  "license": "WTFPL"
}
