babel-plugin-transform-for-of-as-array
Version: 
Transform all for-of loops into the equivalent array for loop
31 lines (30 loc) • 912 B
JSON
{
  "name": "babel-plugin-transform-for-of-as-array",
  "version": "1.1.1",
  "description": "Transform all for-of loops into the equivalent array for loop",
  "repository": "jridgewell/babel-plugin-transform-for-of-as-array",
  "author": "Justin Ridgewell <justin+github@ridgewell.name>",
  "main": "lib/index.js",
  "license": "MIT",
  "devDependencies": {
    "babel-cli": "^7.0.0-beta.2",
    "babel-plugin-transform-es2015-modules-amd": "^7.0.0-beta.2",
    "babel-plugin-transform-es2015-modules-commonjs": "^7.0.0-beta.2",
    "babel-preset-env": "^2.0.0-beta.2",
    "mocha": "^2.2.5"
  },
  "scripts": {
    "clean": "rm -rf lib",
    "build": "babel src -d lib",
    "test": "mocha --compilers js:babel-register",
    "test:watch": "npm run test -- --watch",
    "prepublish": "npm run clean && npm run build"
  },
  "keywords": [
    "for",
    "of",
    "loop",
    "array",
    "babel-plugin"
  ]
}