This repository has been archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
131 lines (131 loc) · 3.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "yurnalist",
"version": "2.1.0",
"description": "Elegant console output, borrowed from Yarn",
"main": "dist/index.js",
"repository": "https://github.com/0x80/yurnalist",
"author": "Thijs Koerselman",
"license": "BSD-2-Clause",
"preferGlobal": true,
"installationMethod": "unknown",
"dependencies": {
"chalk": "^2.4.2",
"inquirer": "^7.0.0",
"is-ci": "^2.0.0",
"read": "^1.0.7",
"strip-ansi": "^5.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-inline-imports-commonjs": "^1.0.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.0.0",
"babel-runtime": "^6.26.0",
"babylon": "^6.5.0",
"deep-equal": "^1.1.0",
"detect-indent": "^6.0.0",
"eslint": "^5.10.0",
"eslint-config-fb-strict": "^23.2.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-jasmine": "^2.6.2",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-relay": "^1.0.0",
"eslint-plugin-yarn-internal": "file:scripts/eslint-rules",
"flow-bin": "0.88.0",
"is-builtin-module": "^3.0.0",
"jest": "^23.6.0",
"mock-stdin": "^0.3.0",
"node-emoji": "^1.10.0",
"np": "^6.5.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"semver": "^6.3.0"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "yarn lint && yarn test-only",
"test-only": "node --max_old_space_size=4096 node_modules/jest/bin/jest.js --verbose",
"test-coverage": "node --max_old_space_size=4096 node_modules/jest/bin/jest.js --coverage --verbose",
"lint": "eslint . && flow check",
"prettier": "eslint src examples __tests__ --fix",
"build": "babel src --out-dir dist",
"watch": "babel src --out-dir dist --watch",
"clean": "rimraf dist",
"prepublish": "npm run clean && npm run build"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"__tests__/fixtures/",
"packages/pkg-tests/pkg-tests-fixtures",
"dist/"
],
"testPathIgnorePatterns": [
"__tests__/(fixtures|__mocks__)/",
"updates/",
"_(temp|mock|install|init|helpers).js$",
"packages/pkg-tests"
]
},
"keywords": [
"ansi",
"cli",
"color",
"colors",
"colour",
"formatting",
"log",
"shell",
"terminal",
"activity",
"command-line",
"command",
"console.log",
"console",
"emoji",
"error",
"footer",
"header",
"info",
"input",
"inspection",
"list",
"logger",
"logging",
"object",
"output",
"pretty",
"process",
"program",
"progress",
"question",
"select",
"spinner",
"stderr",
"stdout",
"steps",
"success",
"table",
"text",
"tree",
"warn",
"yarn"
]
}