package.json
1 { 2 "name": "snapdragon", 3 "description": "Fast, pluggable and easy-to-use parser-renderer factory.", 4 "version": "0.8.2", 5 "homepage": "https://github.com/jonschlinkert/snapdragon", 6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)", 7 "contributors": [ 8 "Brian Woodward (https://twitter.com/doowb)", 9 "Edward Betts (http://edwardbetts.com)", 10 "Jon Schlinkert (http://twitter.com/jonschlinkert)" 11 ], 12 "repository": "jonschlinkert/snapdragon", 13 "bugs": { 14 "url": "https://github.com/jonschlinkert/snapdragon/issues" 15 }, 16 "license": "MIT", 17 "files": [ 18 "index.js", 19 "lib" 20 ], 21 "main": "index.js", 22 "engines": { 23 "node": ">=0.10.0" 24 }, 25 "scripts": { 26 "test": "mocha" 27 }, 28 "dependencies": { 29 "base": "^0.11.1", 30 "debug": "^2.2.0", 31 "define-property": "^0.2.5", 32 "extend-shallow": "^2.0.1", 33 "map-cache": "^0.2.2", 34 "source-map": "^0.5.6", 35 "source-map-resolve": "^0.5.0", 36 "use": "^3.1.0" 37 }, 38 "devDependencies": { 39 "gulp": "^3.9.1", 40 "gulp-eslint": "^3.0.1", 41 "gulp-format-md": "^0.1.10", 42 "gulp-istanbul": "^1.1.1", 43 "gulp-mocha": "^3.0.1", 44 "gulp-unused": "^0.2.0", 45 "mocha": "^3.0.2" 46 }, 47 "keywords": [ 48 "lexer", 49 "snapdragon" 50 ], 51 "verb": { 52 "toc": false, 53 "layout": "default", 54 "tasks": [ 55 "readme" 56 ], 57 "plugins": [ 58 "gulp-format-md" 59 ], 60 "related": { 61 "description": "These libraries use snapdragon:", 62 "list": [ 63 "braces", 64 "expand-brackets", 65 "extglob", 66 "micromatch" 67 ] 68 }, 69 "reflinks": [ 70 "css", 71 "pug", 72 "verb", 73 "verb-generate-readme" 74 ], 75 "lint": { 76 "reflinks": true 77 } 78 } 79 }