UNPKG

gatsby-remark-embed-gist

Version:
89 lines (88 loc) 2.47 kB
{ "license": "MIT", "version": "1.2.1", "name": "gatsby-remark-embed-gist", "description": "Gatsby remark gists preprocessor", "author": { "name": "Patricio Trevino", "email": "patricio@weirdpattern.com" }, "repository": { "type": "git", "url": "https://github.com/weirdpattern/gatsby-remark-embed-gist" }, "bugs": { "url": "https://github.com/weirdpattern/gatsby-remark-embed-gist/issues" }, "main": "index.js", "keywords": [ "gatsby", "gatsbyjs", "gatsby-plugin", "gatsby-remark", "remark", "gist", "embedded", "plugin" ], "scripts": { "build": "rimraf gatsby-ssr.js index.js && cross-env BABEL_ENV=production babel src --out-dir .", "clean": "npx rimraf node_modules", "format": "prettier --write ./{src,specs}/{,**}/*.js", "lint": "eslint ./{src,specs}/{,**}/*.js --config eslint.config.js", "test": "jest", "test:verbose": "jest --verbose", "test:coverage": "jest --coverage --runInBand --no-cache", "release": "yarn run build && ./node_modules/.bin/standard-version" }, "devDependencies": { "@babel/cli": "^7.10.5", "@babel/core": "^7.11.4", "@babel/preset-env": "^7.11.0", "@babel/preset-react": "^7.10.4", "@babel/plugin-proposal-object-rest-spread": "^7.11.0", "@babel/plugin-transform-modules-commonjs": "^7.10.4", "@babel/plugin-transform-runtime": "^7.11.0", "babel-eslint": "^10.1.0", "babel-plugin-add-module-exports": "^1.0.2", "cross-env": "^7.0.2", "eslint": "^7.7.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-filenames": "^1.3.2", "eslint-plugin-jest": "^23.20.0", "eslint-plugin-json": "^2.1.2", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-react": "^7.20.6", "husky": "^4.2.5", "jest": "^26.4.2", "lint-staged": "^10.2.12", "prettier": "^2.1.0", "react": "^16.13.1", "remark": "^12.0.1", "rimraf": "^3.0.2", "standard-version": "^9.0.0" }, "dependencies": { "@babel/runtime": "^7.11.2", "async-unist-util-visit": "^1.0.0", "cheerio": "^1.0.0-rc.3", "parse-numeric-range": "^1.2.0", "node-fetch": "^2.6.0" }, "peerDependencies": { "gatsby": "*", "gatsby-transformer-remark": "*", "react": "*" }, "husky": { "hooks": { "pre-commit": "lint-staged && npm test" } }, "lint-staged": { "*.js{,x}": [ "prettier --write", "git add" ] } }