From 1f3297cedc89d26086e221d1a01278da92a3f269 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Sun, 27 Dec 2015 16:02:09 -0500 Subject: [PATCH] Added package.json --- package.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..a471e26 --- /dev/null +++ b/package.json @@ -0,0 +1,36 @@ +{ + "name": "ipfs-readme-standard", + "version": "1.0.0", + "description": "Standardize IPFS Readmes", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "build": "babel src -d lib" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ipfs/ipfs-readme-standard.git" + }, + "keywords": [ + "markdown", + "readme", + "parse", + "lint", + "standard" + ], + "author": "Richard Littauer (http://burntfen.com)", + "license": "MIT", + "bugs": { + "url": "https://github.com/ipfs/ipfs-readme-standard/issues" + }, + "homepage": "https://github.com/ipfs/ipfs-readme-standard#readme", + "dependencies": { + "fs": "0.0.2", + "graceful-fs": "^4.1.2", + "mdast": "^2.1.0", + "mdast-lint": "^1.1.1" + }, + "devDependencies": { + "babel-cli": "^6.3.17" + } +}