@code-to-json/cli
Version:
112 lines (111 loc) • 2.94 kB
JSON
{
"name": "@code-to-json/cli",
"version": "1.0.0-rc.60",
"description": "CLI for code-to-json",
"main": "lib/src/index.js",
"doc:main": "src/index.ts",
"typings": "lib/src/index.d.ts",
"license": "BSD-2-Clause",
"author": "Mike North <michael.l.north@gmail.com> (https://mike.works)",
"repository": "https://github.com/mike-north/code-to-json/",
"homepage": "https://github.com/mike-north/code-to-json/tree/master/packages/cli",
"bin": {
"code-to-json": "bin/code-to-json"
},
"dependencies": {
"@code-to-json/core": "^1.0.0-rc.57",
"@code-to-json/formatter": "^1.0.0-rc.59",
"@code-to-json/utils": "^1.0.0-rc.41",
"@code-to-json/utils-node": "^1.0.0-rc.52",
"@mike-north/types": "^1.0.7",
"chalk": "^2.4.1",
"commander": "^2.19.0",
"debug": "^4.1.0",
"glob": "^7.1.3",
"import-local": "^2.0.0",
"left-pad": "^1.3.0",
"typescript": "^3.4.3"
},
"scripts": {
"lint": "yarn lint:js && yarn lint:md",
"lint:js": "eslint . --ext js,ts",
"lint:md": "remark .",
"test": "mocha test/**/*.test.ts",
"test:debug": "yarn test --inspect-brk",
"test:coverage": "nyc yarn test",
"codacy:transmit-coverage": "cat coverage/lcov.info | codacy-coverage",
"clean": "rm -rf ./lib",
"build": "tsc -b .",
"rebuild": "npm run clean & npm run build",
"prepublishOnly": "tsc -b ."
},
"keywords": [],
"devDependencies": {
"@code-to-json/test-helpers": "^1.0.0-rc.48",
"@types/chai": "4.1.7",
"@types/glob": "7.1.1",
"@typescript-eslint/eslint-plugin": "1.5.0",
"@typescript-eslint/parser": "1.5.0",
"chai": "4.2.0",
"eslint": "5.15.3",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-typescript": "0.14.0",
"hook-std": "1.2.0",
"mocha": "6.1.3",
"nyc": "13.3.0",
"remark-cli": "6.0.1",
"remark-lint": "6.0.4",
"remark-lint-no-dead-urls": "0.4.1",
"remark-preset-lint-markdown-style-guide": "2.1.2",
"remark-preset-lint-recommended": "3.0.2",
"remark-validate-links": "8.0.2",
"scripty": "1.9.1",
"ts-node": "8.1.0"
},
"nyc": {
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
},
"require": [
"ts-node/register",
"source-map-support/register"
],
"extension": [
".ts"
],
"include": [
"src"
],
"reporter": [
"lcov",
"json",
"text-summary"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
"remark-preset-lint-markdown-style-guide"
]
},
"gitHead": "d9fbc6eb70161dfb3a00aa83b31adac3b7ea2034"
}