toga-sample
Version:
A sample formatter for Toga documentation.
46 lines (45 loc) • 1.31 kB
JSON
{
"name": "toga-sample",
"version": "0.1.0-alpha",
"description": "A sample formatter for Toga documentation.",
"keywords": [
"togaplugin",
"formatter",
"example",
"iframe",
"sample"
],
"homepage": "https://github.com/togajs/toga-sample",
"bugs": "https://github.com/togajs/toga-sample/issues",
"license": "MIT",
"author": "Shannon Moeller <me@shannonmoeller.com> (http://shannonmoeller.com)",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/togajs/toga-sample.git"
},
"dependencies": {
"mtil": "^0.1.3",
"through2": "^0.6.5",
"traverse": "^0.6.6"
},
"devDependencies": {
"babel": "^5.2.17",
"coveralls": "^2.11.2",
"eslint": "^0.20.0",
"expect": "^1.6.0",
"isparta": "^3.0.3",
"mocha": "^2.2.4",
"nodemon": "^1.3.7",
"tunic": "^0.3.0",
"vinyl-fs": "^1.0.0"
},
"scripts": {
"build": "babel index.js --out-file dist/index.js",
"cover": "babel-node ./node_modules/.bin/isparta cover --include index.js ./node_modules/.bin/_mocha -- test/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint index.js test/*.js",
"test": "npm run lint && npm run cover",
"watch": "nodemon --exec 'npm run test' --watch index.js --watch test"
}
}