UNPKG

2.03 kBJSONView Raw
1{
2 "name": "cli-ux",
3 "description": "set of CLI output utilities",
4 "version": "1.1.13",
5 "author": "Jeff Dickey",
6 "bugs": "https://github.com/jdxcode/cli-ux/issues",
7 "dependencies": {
8 "@heroku/linewrap": "^1.0.0",
9 "ansi-escapes": "^3.0.0",
10 "ansi-styles": "^3.2.0",
11 "cardinal": "^1.0.0",
12 "chalk": "^2.1.0",
13 "fs-extra": "^4.0.2",
14 "lodash": "^4.17.4",
15 "moment": "^2.18.1",
16 "password-prompt": "^1.0.3",
17 "strip-ansi": "^4.0.0",
18 "supports-color": "^4.4.0",
19 "ts-lodash": "^4.0.5"
20 },
21 "devDependencies": {
22 "@types/ansi-styles": "^2.0.30",
23 "@types/chalk": "^0.4.31",
24 "@types/fs-extra": "^4.0.2",
25 "@types/jest": "^20.0.8",
26 "@types/lodash": "^4.14.74",
27 "@types/node": "^8.0.28",
28 "@types/strip-ansi": "^3.0.0",
29 "@types/supports-color": "^3.1.0",
30 "babel-core": "^6.26.0",
31 "del-cli": "^1.1.0",
32 "husky": "^0.14.3",
33 "jest": "^21.1.0",
34 "lint-staged": "^4.2.1",
35 "prettier": "^1.7.0",
36 "remap-istanbul": "^0.9.5",
37 "rimraf": "^2.6.2",
38 "std-mocks": "^1.0.1",
39 "ts-jest": "^21.0.1",
40 "ts-node": "^3.3.0",
41 "typescript": "^2.5.2"
42 },
43 "files": [
44 "lib"
45 ],
46 "homepage": "https://github.com/jdxcode/cli-ux",
47 "jest": {
48 "coverageReporters": [
49 "json"
50 ],
51 "transform": {
52 "^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
53 },
54 "testRegex": "\\.test\\.ts$",
55 "moduleFileExtensions": [
56 "js",
57 "ts"
58 ]
59 },
60 "keywords": [
61 "cli"
62 ],
63 "license": "ISC",
64 "lint-staged": {
65 "**/*.ts": [
66 "prettier --write",
67 "git add",
68 "jest --bail --findRelatedTests"
69 ]
70 },
71 "main": "./lib/index.js",
72 "repository": "jdxcode/cli-ux",
73 "scripts": {
74 "coverage": "cat coverage/coverage-final.json | remap-istanbul -o coverage/coverage-final.json && curl -s https://codecov.io/bash | bash",
75 "precommit": "lint-staged",
76 "prepare": "del lib && tsc",
77 "pretest": "tsc --sourcemap",
78 "test": "jest"
79 },
80 "types": "./lib/index.d.ts"
81}