Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| { | |
| "name": "md2gslides", | |
| "version": "0.3.0", | |
| "description": "Convert Markdown to Google Slides", | |
| "main": "index.js", | |
| "files": [ | |
| "index.js", | |
| "bin/", | |
| "lib/", | |
| "LICENSE", | |
| "README.md", | |
| "CONTRIBUTING.md", | |
| "CHANGELOG.md" | |
| ], | |
| "scripts": { | |
| "clean": "rm -rf lib", | |
| "compile": "babel --source-maps both -d lib/ src/", | |
| "prepublish": "npm run compile", | |
| "test": "npm run compile && mocha --compilers js:babel-core/register --timeout 5000", | |
| "lint": "./node_modules/.bin/eslint --fix src bin" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com//googlesamples/md2googleslides" | |
| }, | |
| "keywords": [ | |
| "markdown", | |
| "google", | |
| "slides" | |
| ], | |
| "author": "Steven Bazyl", | |
| "license": "Apache-2.0", | |
| "dependencies": { | |
| "argparse": "^1.0.7", | |
| "babel-polyfill": "~6.16.0", | |
| "debug": "^2.2.0", | |
| "extend": "^3.0.0", | |
| "google-auth-library": "^0.9.8", | |
| "googleapis": "~16.1", | |
| "highlight.js": "^9.7.0", | |
| "inline-styles-parse": "^1.2.0", | |
| "jsonfile": "^2.4.0", | |
| "layout": "^2.2.0", | |
| "lodash": "^4.16.4", | |
| "lowdb": "^0.13.1", | |
| "lowlight": "^1.4.0", | |
| "markdown": "^0.5.0", | |
| "markdown-it": "^8.0.0", | |
| "markdown-it-attrs": "^0.7.1", | |
| "markdown-it-emoji": "^1.2.0", | |
| "markdown-it-expand-tabs": "^1.0.11", | |
| "markdown-it-lazy-headers": "^0.1.3", | |
| "markdown-it-video": "^0.4.0", | |
| "mkdirp": "^0.5.1", | |
| "native-css": "^1.2.5", | |
| "opener": "^1.4.2", | |
| "parse-color": "^1.0.0", | |
| "parse5": "^3.0", | |
| "probe-image-size": "^2.1.1", | |
| "promise": "^7.1.1", | |
| "promise-retry": "^1.1.1", | |
| "uuid": "^2.0.3" | |
| }, | |
| "devDependencies": { | |
| "babel-cli": "^6.14.0", | |
| "babel-preset-es2015": "^6.14.0", | |
| "chai": "^3.5.0", | |
| "chai-as-promised": "^5.3.0", | |
| "chai-subset": "^1.3.0", | |
| "eslint": "^3.6.0", | |
| "mocha": "^3.0.2", | |
| "mock-fs": "^3.11.0", | |
| "nock": "^8.0.0" | |
| }, | |
| "bin": { | |
| "md2gslides": "bin/md2gslides.js" | |
| } | |
| } |