UNPKG

word-table

Version:

word-table is simple browserjs / nodejs library for drawing tables in the terminal/console.

85 lines (84 loc) 2.14 kB
{ "name": "word-table", "officialName": "word-table", "version": "1.0.3", "summary": "word-table is simple browserjs / nodejs library for drawing ascii tables in the terminal / console.", "description": "word-table is simple browserjs / nodejs library for drawing tables in the terminal/console.", "author": { "name": "hustcc", "url": "http://git.hust.cc/word-table" }, "license": "MIT", "keywords": [ "word-table", "ascii", "ascii-table", "table", "sheet", "terminal", "console", "terminal table", "console table" ], "main": "dist/word-table.min.js", "repository": { "type": "git", "url": "https://github.com/hustcc/word-table" }, "bugs": { "url": "https://github.com/hustcc/word-table/issues" }, "devDependencies": { "babel-cli": "^6.24.1", "babel-core": "^6.24.1", "babel-eslint": "^7.2.3", "babel-jest": "^20.0.3", "babel-loader": "^7.0.0", "babel-preset-env": "^1.5.1", "babel-preset-es2015": "^6.24.1", "babel-preset-react": "^6.24.1", "babel-preset-stage-0": "^6.24.1", "coveralls": "^2.13.1", "eslint": "^3.19.0", "eslint-config-airbnb": "^15.0.1", "eslint-config-airbnb-base": "^11.2.0", "eslint-plugin-import": "^2.3.0", "eslint-plugin-jsx-a11y": "^5.0.3", "eslint-plugin-react": "^7.0.1", "jest": "^20.0.4", "webpack": "^2.6.0" }, "scripts": { "lint": "eslint src", "test": "npm run lint && npm run cover", "dev": "webpack --watch", "cover": "jest --coverage", "coveralls": "cat ./coverage/lcov.info | coveralls", "build": "webpack && npm run test" }, "dependencies": { "word-width": "^1.0.1" }, "jest": { "testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "tsx", "js", "json" ], "collectCoverage": true, "collectCoverageFrom": [ "src/*.{js,jsx}", "!**/node_modules/**", "!**/vendor/**" ], "moduleDirectories": [ "node_modules", "src" ], "transform": { "^.+\\.js?$": "babel-jest" } } }