UNPKG

retext-syllable

Version:
55 lines (54 loc) 1.56 kB
{ "name": "retext-syllable", "version": "1.0.0", "description": "Count syllables in Retext", "license": "MIT", "keywords": [ "syllable", "retext" ], "dependencies": { "nlcst-to-string": "^0.1.5", "syllable": "^0.1.4", "unist-util-visit": "^1.0.0" }, "files": [ "index.js" ], "repository": { "type": "git", "url": "https://github.com/wooorm/retext-syllable.git" }, "author": "Titus Wormer <tituswormer@gmail.com>", "devDependencies": { "browserify": "^11.0.1", "chalk": "^1.0.0", "eslint": "^1.0.0", "esmangle": "^1.0.1", "istanbul": "^0.3.0", "jscs": "^2.0.0", "jscs-jsdoc": "^1.0.0", "mdast": "^0.28.0", "mdast-comment-config": "^0.1.2", "mdast-github": "^0.3.2", "mdast-lint": "^0.4.2", "mdast-slug": "^0.1.1", "mdast-validate-links": "^0.3.1", "mocha": "^2.0.0", "retext": "^1.0.0-rc.2" }, "scripts": { "test-api": "mocha --check-leaks test.js", "test-coverage": "istanbul cover _mocha -- test.js", "test-travis": "npm run test-coverage", "test": "npm run test-api", "lint-api": "eslint .", "lint-style": "jscs --reporter inline .", "lint": "npm run lint-api && npm run lint-style", "make": "npm run lint && npm run test-coverage", "build-bundle": "browserify index.js --no-builtins -s retextSyllable > retext-syllable.js", "postbuild-bundle": "esmangle retext-syllable.js > retext-syllable.min.js", "build-md": "mdast . --quiet", "build": "npm run build-bundle && npm run build-md" } }