rofrischmann/tokenize-sync

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "tokenize-sync",
  "version": "2.0.0",
  "description": "Simple synchronous string tokenizer using Regex",
  "main": "lib/tokenize.js",
  "scripts": {
    "babel": "rimraf lib && babel -d lib modules",
    "check":
      "npm run format && npm run lint && npm run flow && npm run test:coverage",
    "flow": "flow modules",
    "format":
      "prettier --single-quote --no-semi --jsx-bracket-same-line --write \"modules/**/*.js\"",
    "lint": "eslint modules",
    "release": "npm run check && npm run babel && npm publish",
    "test": "jest",
    "test:coverage": "jest --coverage"
  },
  "files": ["LICENSE", "README.md", "lib/"],
  "repository": "https://github.com/rofrischmann/tokenize-sync",
  "author": "Robin Frischmann",
  "license": "MIT",
  "jest": {
    "rootDir": "modules"
  },
  "keywords": ["tokenizer", "parser", "compiler", "tokenize"],
  "devDependencies": {
    "babel-core": "^6.22.1",
    "babel-eslint": "^7.1.1",
    "babel-jest": "^18.0.0",
    "babel-preset-es2015": "^6.22.0",
    "babel-preset-flow": "^6.23.0",
    "codeclimate-test-reporter": "^0.4.0",
    "eslint": "^3.14.1",
    "eslint-config-airbnb": "^14.0.0",
    "eslint-plugin-flowtype": "^2.30.0",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^3.0.2",
    "eslint-plugin-react": "^6.9.0",
    "flow-bin": "^0.38.0",
    "jest": "^18.1.0",
    "prettier": "^1.3.1",
    "rimraf": "^2.6.1"
  }
}