|
1 | 1 | {
|
2 |
| - "name": "standard-log-color", |
3 |
| - "version": "11.5.1", |
4 |
| - "description": "Color console reporter for `standard-log`", |
5 |
| - "homepage": "https://github.com/unional/standard-log/tree/main/packages/color", |
6 |
| - "bugs": { |
7 |
| - "url": "https://github.com/unional/standard-log/issues" |
8 |
| - }, |
9 |
| - "repository": { |
10 |
| - "type": "git", |
11 |
| - "url": "https://github.com/unional/standard-log.git" |
12 |
| - }, |
13 |
| - "license": "MIT", |
14 |
| - "author": { |
15 |
| - "name": "Homa Wong", |
16 |
| - "email": "homawong@gmail.com" |
17 |
| - }, |
18 |
| - "sideEffects": false, |
19 |
| - "type": "module", |
20 |
| - "exports": { |
21 |
| - "import": "./esm/index.js", |
22 |
| - "require": "./cjs/index.js" |
23 |
| - }, |
24 |
| - "main": "./cjs/index.js", |
25 |
| - "browser": { |
26 |
| - "./cjs/createColorLogReporter.d.ts": "./cjs/createColorLogReporter.browser.d.ts", |
27 |
| - "./cjs/createColorLogReporter.js": "./cjs/createColorLogReporter.browser.js", |
28 |
| - "./cjs/createColorLogReporter.js.map": "./cjs/createColorLogReporter.browser.js.map", |
29 |
| - "./cjs/utils/supportColor.d.ts": "./cjs/utils/supportColor.browser.d.ts", |
30 |
| - "./cjs/utils/supportColor.js": "./cjs/utils/supportColor.browser.js", |
31 |
| - "./cjs/utils/supportColor.js.map": "./cjs/utils/supportColor.browser.js.map", |
32 |
| - "./esm/createColorLogReporter.d.ts": "./esm/createColorLogReporter.browser.d.ts", |
33 |
| - "./esm/createColorLogReporter.js": "./esm/createColorLogReporter.browser.js", |
34 |
| - "./esm/createColorLogReporter.js.map": "./esm/createColorLogReporter.browser.js.map", |
35 |
| - "./esm/utils/supportColor.d.ts": "./esm/utils/supportColor.browser.d.ts", |
36 |
| - "./esm/utils/supportColor.js": "./esm/utils/supportColor.browser.js", |
37 |
| - "./esm/utils/supportColor.js.map": "./esm/utils/supportColor.browser.js.map", |
38 |
| - "./ts/createColorLogReporter.ts": "./ts/createColorLogReporter.browser.ts", |
39 |
| - "./ts/utils/supportColor.ts": "./ts/utils/supportColor.browser.ts" |
40 |
| - }, |
41 |
| - "types": "./cjs/index.d.ts", |
42 |
| - "files": [ |
43 |
| - "dist", |
44 |
| - "cjs", |
45 |
| - "esm", |
46 |
| - "ts", |
47 |
| - "!**/*.spec.*" |
48 |
| - ], |
49 |
| - "scripts": { |
50 |
| - "build": "run-p build:cjs build:esm build:tslib bundle:es5 bundle:esm", |
51 |
| - "build:clean": "rimraf *.tsbuildinfo", |
52 |
| - "build:cjs": "tsc -p ./tsconfig.cjs.json && ncp package.cjs.json cjs/package.json", |
53 |
| - "build:esm": "tsc -p ./tsconfig.esm.json", |
54 |
| - "build:tslib": "tsc -p ./tsconfig.tslib.json && ncp package.cjs.json tslib/package.json", |
55 |
| - "bundle": "run-p bundle:es5 bundle:esm bundle:nodenext", |
56 |
| - "bundle:es5": "webpack -c ./webpack.es5.cjs", |
57 |
| - "bundle:esm": "webpack -c ./webpack.esm.cjs", |
58 |
| - "bundle:nodenext": "webpack -c ./webpack.nodenext.cjs", |
59 |
| - "clean": "rimraf cjs coverage dist esm lib libm tslib *.tsbuildinfo", |
60 |
| - "coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage", |
61 |
| - "depcheck": "depcheck", |
62 |
| - "lint": "cross-env TIMING=1 eslint --ext=ts,js,cjs,mjs .", |
63 |
| - "nuke": "run-s clean nuke:local", |
64 |
| - "nuke:local": "rimraf node_modules", |
65 |
| - "prepublishOnly": "yarn build && yarn bundle", |
66 |
| - "size": "size-limit", |
67 |
| - "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest", |
68 |
| - "test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch", |
69 |
| - "verify": "npm-run-all -p build depcheck lint coverage -p size", |
70 |
| - "watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch" |
71 |
| - }, |
72 |
| - "dependencies": { |
73 |
| - "color-map": "^2.0.6", |
74 |
| - "supports-color": "^9.0.0", |
75 |
| - "unpartial": "^1.0.4" |
76 |
| - }, |
77 |
| - "devDependencies": { |
78 |
| - "@repobuddy/jest": "^3.0.0", |
79 |
| - "@size-limit/preset-small-lib": "^8.1.0", |
80 |
| - "@types/jest": "^29.1.1", |
81 |
| - "@types/supports-color": "^8.1.1", |
82 |
| - "@typescript-eslint/eslint-plugin": "^5.38.1", |
83 |
| - "@typescript-eslint/parser": "^5.38.1", |
84 |
| - "assertron": "^11.0.0", |
85 |
| - "compression-webpack-plugin": "^10.0.0", |
86 |
| - "cross-env": "^7.0.3", |
87 |
| - "depcheck": "^1.4.3", |
88 |
| - "eslint": "^8.24.0", |
89 |
| - "eslint-config-prettier": "^8.5.0", |
90 |
| - "eslint-plugin-harmony": "^7.1.0", |
91 |
| - "jest": "^29.1.2", |
92 |
| - "jest-validate": "^29.1.2", |
93 |
| - "jest-watch-suspend": "^1.1.2", |
94 |
| - "jest-watch-toggle-config-2": "^2.1.0", |
95 |
| - "jest-watch-typeahead": "^2.2.0", |
96 |
| - "ncp": "^2.0.0", |
97 |
| - "npm-run-all": "^4.1.5", |
98 |
| - "param-case": "^3.0.4", |
99 |
| - "pascal-case": "^3.1.2", |
100 |
| - "rimraf": "^3.0.2", |
101 |
| - "satisfier": "^5.2.2", |
102 |
| - "size-limit": "^8.1.0", |
103 |
| - "standard-log": "workspace:*", |
104 |
| - "ts-jest": "^29.0.3", |
105 |
| - "ts-loader": "^9.3.0", |
106 |
| - "tslib": "^2.4.0", |
107 |
| - "typescript": "^5.0.0", |
108 |
| - "webpack": "^5.74.0", |
109 |
| - "webpack-cli": "^5.0.0" |
110 |
| - }, |
111 |
| - "peerDependencies": { |
112 |
| - "standard-log": ">=11.0.1" |
113 |
| - }, |
114 |
| - "size-limit": [ |
115 |
| - { |
116 |
| - "path": "./cjs/index.js", |
117 |
| - "limit": "10 kB" |
118 |
| - }, |
119 |
| - { |
120 |
| - "path": "./esm/index.js", |
121 |
| - "limit": "10 kB" |
122 |
| - }, |
123 |
| - { |
124 |
| - "path": "./tslib/index.js", |
125 |
| - "limit": "10 kB" |
126 |
| - } |
127 |
| - ] |
| 2 | + "name": "standard-log-color", |
| 3 | + "version": "11.5.1", |
| 4 | + "description": "Color console reporter for `standard-log`", |
| 5 | + "homepage": "https://github.com/unional/standard-log/tree/main/packages/color", |
| 6 | + "bugs": { |
| 7 | + "url": "https://github.com/unional/standard-log/issues" |
| 8 | + }, |
| 9 | + "repository": { |
| 10 | + "type": "git", |
| 11 | + "url": "https://github.com/unional/standard-log.git" |
| 12 | + }, |
| 13 | + "license": "MIT", |
| 14 | + "author": { |
| 15 | + "name": "Homa Wong", |
| 16 | + "email": "homawong@gmail.com" |
| 17 | + }, |
| 18 | + "sideEffects": false, |
| 19 | + "type": "module", |
| 20 | + "exports": { |
| 21 | + "import": { |
| 22 | + "types": "./esm/index.d.ts", |
| 23 | + "default": "./esm/index.js" |
| 24 | + }, |
| 25 | + "require": { |
| 26 | + "types": "./cjs/index.d.ts", |
| 27 | + "default": "./cjs/index.js" |
| 28 | + } |
| 29 | + }, |
| 30 | + "main": "./cjs/index.js", |
| 31 | + "module": "./esm/index.js", |
| 32 | + "browser": { |
| 33 | + "./cjs/createColorLogReporter.d.ts": "./cjs/createColorLogReporter.browser.d.ts", |
| 34 | + "./cjs/createColorLogReporter.js": "./cjs/createColorLogReporter.browser.js", |
| 35 | + "./cjs/createColorLogReporter.js.map": "./cjs/createColorLogReporter.browser.js.map", |
| 36 | + "./cjs/utils/supportColor.d.ts": "./cjs/utils/supportColor.browser.d.ts", |
| 37 | + "./cjs/utils/supportColor.js": "./cjs/utils/supportColor.browser.js", |
| 38 | + "./cjs/utils/supportColor.js.map": "./cjs/utils/supportColor.browser.js.map", |
| 39 | + "./esm/createColorLogReporter.d.ts": "./esm/createColorLogReporter.browser.d.ts", |
| 40 | + "./esm/createColorLogReporter.js": "./esm/createColorLogReporter.browser.js", |
| 41 | + "./esm/createColorLogReporter.js.map": "./esm/createColorLogReporter.browser.js.map", |
| 42 | + "./esm/utils/supportColor.d.ts": "./esm/utils/supportColor.browser.d.ts", |
| 43 | + "./esm/utils/supportColor.js": "./esm/utils/supportColor.browser.js", |
| 44 | + "./esm/utils/supportColor.js.map": "./esm/utils/supportColor.browser.js.map", |
| 45 | + "./ts/createColorLogReporter.ts": "./ts/createColorLogReporter.browser.ts", |
| 46 | + "./ts/utils/supportColor.ts": "./ts/utils/supportColor.browser.ts" |
| 47 | + }, |
| 48 | + "types": "./cjs/index.d.ts", |
| 49 | + "files": [ |
| 50 | + "dist", |
| 51 | + "cjs", |
| 52 | + "esm", |
| 53 | + "ts", |
| 54 | + "!**/*.spec.*" |
| 55 | + ], |
| 56 | + "scripts": { |
| 57 | + "build": "run-p build:cjs build:esm build:tslib bundle:es5 bundle:esm", |
| 58 | + "build:clean": "rimraf *.tsbuildinfo", |
| 59 | + "build:cjs": "tsc -p ./tsconfig.cjs.json && ncp package.cjs.json cjs/package.json", |
| 60 | + "build:esm": "tsc -p ./tsconfig.esm.json", |
| 61 | + "build:tslib": "tsc -p ./tsconfig.tslib.json && ncp package.cjs.json tslib/package.json", |
| 62 | + "bundle": "run-p bundle:es5 bundle:esm bundle:nodenext", |
| 63 | + "bundle:es5": "webpack -c ./webpack.es5.cjs", |
| 64 | + "bundle:esm": "webpack -c ./webpack.esm.cjs", |
| 65 | + "bundle:nodenext": "webpack -c ./webpack.nodenext.cjs", |
| 66 | + "clean": "rimraf cjs coverage dist esm lib libm tslib *.tsbuildinfo", |
| 67 | + "coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage", |
| 68 | + "depcheck": "depcheck", |
| 69 | + "lint": "cross-env TIMING=1 eslint --ext=ts,js,cjs,mjs .", |
| 70 | + "nuke": "run-s clean nuke:local", |
| 71 | + "nuke:local": "rimraf node_modules", |
| 72 | + "prepublishOnly": "yarn build && yarn bundle", |
| 73 | + "size": "size-limit", |
| 74 | + "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest", |
| 75 | + "test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch", |
| 76 | + "verify": "npm-run-all -p build depcheck lint coverage -p size", |
| 77 | + "watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch" |
| 78 | + }, |
| 79 | + "dependencies": { |
| 80 | + "color-map": "^2.0.6", |
| 81 | + "supports-color": "^9.0.0", |
| 82 | + "unpartial": "^1.0.4" |
| 83 | + }, |
| 84 | + "devDependencies": { |
| 85 | + "@repobuddy/jest": "^3.0.0", |
| 86 | + "@size-limit/preset-small-lib": "^8.1.0", |
| 87 | + "@types/jest": "^29.1.1", |
| 88 | + "@types/supports-color": "^8.1.1", |
| 89 | + "@typescript-eslint/eslint-plugin": "^5.38.1", |
| 90 | + "@typescript-eslint/parser": "^5.38.1", |
| 91 | + "assertron": "^11.0.0", |
| 92 | + "compression-webpack-plugin": "^10.0.0", |
| 93 | + "cross-env": "^7.0.3", |
| 94 | + "depcheck": "^1.4.3", |
| 95 | + "eslint": "^8.24.0", |
| 96 | + "eslint-config-prettier": "^8.5.0", |
| 97 | + "eslint-plugin-harmony": "^7.1.0", |
| 98 | + "jest": "^29.1.2", |
| 99 | + "jest-validate": "^29.1.2", |
| 100 | + "jest-watch-suspend": "^1.1.2", |
| 101 | + "jest-watch-toggle-config-2": "^2.1.0", |
| 102 | + "jest-watch-typeahead": "^2.2.0", |
| 103 | + "ncp": "^2.0.0", |
| 104 | + "npm-run-all": "^4.1.5", |
| 105 | + "param-case": "^3.0.4", |
| 106 | + "pascal-case": "^3.1.2", |
| 107 | + "rimraf": "^3.0.2", |
| 108 | + "satisfier": "^5.2.2", |
| 109 | + "size-limit": "^8.1.0", |
| 110 | + "standard-log": "workspace:*", |
| 111 | + "ts-jest": "^29.0.3", |
| 112 | + "ts-loader": "^9.3.0", |
| 113 | + "tslib": "^2.4.0", |
| 114 | + "typescript": "^5.0.0", |
| 115 | + "webpack": "^5.74.0", |
| 116 | + "webpack-cli": "^5.0.0" |
| 117 | + }, |
| 118 | + "peerDependencies": { |
| 119 | + "standard-log": ">=11.0.1" |
| 120 | + }, |
| 121 | + "size-limit": [ |
| 122 | + { |
| 123 | + "path": "./cjs/index.js", |
| 124 | + "limit": "10 kB" |
| 125 | + }, |
| 126 | + { |
| 127 | + "path": "./esm/index.js", |
| 128 | + "limit": "10 kB" |
| 129 | + }, |
| 130 | + { |
| 131 | + "path": "./tslib/index.js", |
| 132 | + "limit": "10 kB" |
| 133 | + } |
| 134 | + ] |
128 | 135 | }
|
0 commit comments