mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-28 20:54:46 +01:00
103 lines
2.7 KiB
JSON
103 lines
2.7 KiB
JSON
{
|
|
"name": "tty-table",
|
|
"version": "4.2.1",
|
|
"description": "Node cli table",
|
|
"main": "src/main.js",
|
|
"types": "src/factory.d.ts",
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"bin": {
|
|
"tty-table": "adapters/terminal-adapter.js"
|
|
},
|
|
"files": [
|
|
"adapters/",
|
|
"src/",
|
|
"LICENSE.txt"
|
|
],
|
|
"preferGlobal": false,
|
|
"scripts": {
|
|
"dist": "npx grunt browserify && npx rollup -c",
|
|
"coverage": "npx nyc mocha",
|
|
"test": "npx mocha",
|
|
"report-to-coveralls": "npx nyc report --reporter=text-lcov | npx coveralls",
|
|
"report-to-coverio": "npx nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov -t ffe0f46d-c939-4302-b199-0f2de3e8c18a",
|
|
"save-tests": "node npm_scripts/run-examples.js save",
|
|
"view-examples": "node npm_scripts/run-examples.js view",
|
|
"lint": "npx eslint adapters/*.js src/*.js",
|
|
"lint-fix": "npx eslint adapters/*.js src/*.js --fix",
|
|
"lint-examples": "npx eslint examples/",
|
|
"lint-fix-examples": "npx eslint examples/ --fix",
|
|
"prepublishOnly": "npm run dist",
|
|
"tags": "npx grunt tags",
|
|
"watch-tags": "npx grunt watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tecfu/tty-table.git"
|
|
},
|
|
"keywords": [
|
|
"table",
|
|
"table in bash",
|
|
"cli-table",
|
|
"terminal table",
|
|
"console table",
|
|
"cli table",
|
|
"console.table",
|
|
"ascii table"
|
|
],
|
|
"author": "Tecfu",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/tecfu/tty-table/issues"
|
|
},
|
|
"homepage": "https://github.com/tecfu/tty-table",
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"csv": "^5.5.3",
|
|
"kleur": "^4.1.5",
|
|
"smartwrap": "^2.0.2",
|
|
"strip-ansi": "^6.0.1",
|
|
"wcwidth": "^1.0.1",
|
|
"yargs": "^17.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^11.0.2",
|
|
"@rollup/plugin-node-resolve": "^7.1.1",
|
|
"@rollup/plugin-replace": "^2.3.1",
|
|
"axios-error": "^1.0.4",
|
|
"babel-core": "^6.26.3",
|
|
"babel-preset-babili": "0.1.4",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babelify": "^8.0.0",
|
|
"browserify": "^16.5.0",
|
|
"chai": "^4.2.0",
|
|
"codecov": "^3.6.5",
|
|
"commander": "^4.1.1",
|
|
"coveralls": "^3.0.9",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-node": "^11.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"glob": "^7.1.6",
|
|
"grunt": "^1.1.0",
|
|
"grunt-cli": "^1.3.2",
|
|
"grunt-contrib-watch": "^1.1.0",
|
|
"grunt-shell": "^3.0.1",
|
|
"husky": "^4.2.5",
|
|
"mocha": "^6.1.4",
|
|
"mocha-lcov-reporter": "^1.3.0",
|
|
"nyc": "^15.0.0",
|
|
"rollup": "^1.31.1"
|
|
},
|
|
"nyc": {
|
|
"all": false,
|
|
"include": [
|
|
"src/*.js",
|
|
"adapters/*.js"
|
|
]
|
|
},
|
|
"defaultTestColumns": 90
|
|
}
|