@ianwalter/blueline
Version:
Toolkit for converting API Blueprint files to JSON and consuming that JSON
68 lines (67 loc) • 1.59 kB
JSON
{
"name": "@ianwalter/blueline",
"version": "2.0.2",
"description": "Toolkit for converting API Blueprint files to JSON and consuming that JSON",
"main": "dist/blueline.js",
"module": "dist/blueline.m.js",
"bin": {
"blueline": "cli.js"
},
"scripts": {
"lint": "eslint index.js cli.js lib tests",
"fixtures": "./cli.js tests/fixtures tests/fixtures",
"pretest": "dist && npm run fixtures",
"test": "ava"
},
"files": [
"dist",
"index.js",
"cli.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ianwalter/blueline.git"
},
"keywords": [
"API",
"Blueprint",
"JSON"
],
"author": "Ian Walter <public@iankwalter.com> (https://iankwalter.com)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/ianwalter/blueline/issues"
},
"homepage": "https://github.com/ianwalter/blueline#readme",
"dependencies": {
"@ianwalter/find-nested": "^2.0.3",
"chalk": "^2.4.2",
"drafter.js": "^2.6.7",
"make-dir": "^1.3.0",
"meow": "^5.0.0"
},
"devDependencies": {
"@ianwalter/dist": "^1.4.0",
"ava": "^1.1.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"np": "^4.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"standard"
],
"rules": {
"no-console": 0
}
}
}