UNPKG

babel-plugin-console

Version:

Babel plugin with additional console helper functions

89 lines (88 loc) 2.34 kB
{ "name": "babel-plugin-console", "version": "0.2.1", "description": "Babel plugin with additional console helper functions", "main": "dist/index.js", "files": [ "dist", "scope.macro.js" ], "scripts": { "contributor": "all-contributors add", "contributor:gen": "all-contributors generate", "build": "babel src -d dist --ignore *.test.js", "lint": "eslint src", "lint:fix": "yarn lint -- --fix", "precommit": "lint-staged", "prepublish": "yarn build", "prettier": "prettier 'src/**/*.js' --write --single-quote=true --print-width=120", "test": "jest", "test:coverage": "yarn test -- --coverage", "test:report": "codecov", "test:watch": "yarn test -- --watch" }, "repository": { "type": "git", "url": "git+https://github.com/mattphillips/babel-plugin-console.git" }, "keywords": [ "babel", "plugin", "babel-plugin", "console", "scope", "babel-plugin-macros" ], "author": "Matt Phillips <matt@mattphillips> (http://mattphillips.io)", "license": "MIT", "bugs": { "url": "https://github.com/mattphillips/babel-plugin-console/issues" }, "homepage": "https://github.com/mattphillips/babel-plugin-console#readme", "devDependencies": { "all-contributors-cli": "^4.10.1", "babel-cli": "^6.26.0", "babel-eslint": "^8.2.1", "babel-jest": "^22.1.0", "babel-plugin-tester": "^5.0.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0", "babel-plugin-transform-object-rest-spread": "^6.26.0", "codecov": "^3.0.0", "eslint": "^4.16.0", "eslint-plugin-import": "^2.8.0", "eslint-plugin-jest": "^21.7.0", "eslint-plugin-wyze": "^3.3.1", "husky": "^0.14.3", "jest": "^22.1.4", "jest-each": "^0.3.1", "lint-staged": "^6.0.1", "prettier": "^1.10.2" }, "jest": { "testEnvironment": "node", "testPathIgnorePatterns": [ "/node_modules/", "/fixtures/" ], "coveragePathIgnorePatterns": [ "/node_modules/" ], "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } } }, "lint-staged": { "*.js": [ "yarn prettier", "git add" ] }, "dependencies": { "babel-plugin-macros": "^2.0.0" } }