-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (130 loc) · 4.08 KB
/
package.json
File metadata and controls
131 lines (130 loc) · 4.08 KB
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
{
"name": "@nevware21/chromacon",
"description": "Text formatting utilities to colorize your text output.",
"version": "0.1.4",
"homepage": "https://github.com/nevware21/chromacon",
"sideEffects": false,
"license": "MIT",
"author": {
"name": "NevWare21 Solutions LLC",
"email": "github+chromacon@nevware21.com"
},
"keywords": [
"typescript",
"javascript",
"color",
"colour",
"colors",
"colours",
"terminal",
"console",
"cli",
"tty",
"ansi",
"ansi-colors",
"escape-codes",
"style",
"styles",
"styling",
"formatting",
"text-decoration",
"colorize",
"colorise",
"rgb",
"256-color",
"truecolor",
"log",
"logging",
"text",
"pretty-print",
"cross-platform",
"browser",
"node",
"nodejs",
"stdout",
"stderr",
"chalk",
"kleur"
],
"scripts": {
"postinstall": "node common/scripts/install-run-rush.js update --full",
"build": "rush build && npm run pre-proc -- -restore",
"rebuild": "rush rebuild && npm run pre-proc -- -restore && npm run size",
"test": "rush test",
"lint": "grunt chromacon-lint",
"coverage:report": "npm run coverage:nyc && npm run coverage:merge",
"coverage:nyc": "nyc report --reporter=json",
"coverage:merge": "merge-coverage",
"codecov": "npm run coverage:report",
"clean": "git clean -xdf && npm install",
"cleanBuild": "npm run clean && npm run rebuild && npm run docs",
"docs": "typedoc --plugin typedoc-github-theme",
"rush-update": "rush update --recheck --purge --full",
"test:browser": "cd core && npm run test:browser",
"test:node": "cd core && npm run test:node",
"test:worker": "cd core && npm run test:worker",
"debug:browser": "cd core && npm run debug:browser",
"debug:worker": "cd core && npm run debug:worker",
"prep-release": "npm run cleanBuild && npm run npm-pack",
"npm-pack": "copyfiles README.md LICENSE core && cd core && npm pack",
"npm-publish": "publish-npm -c ./publish-groups.json",
"pre-proc": "ts-preproc -C ./pre-proc.json",
"preproc-restore": "ts-preproc-restore -c ./pre-proc.json",
"size": "size-limit",
"size-check": "node core/test/bundle-size-check.js",
"link-check": "node core/test/readme-links-check.js",
"readme-link-check": "npm run docs && npm run link-check"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nevware21"
},
"repository": {
"type": "git",
"url": "https://github.com/nevware21/chromacon.git"
},
"bugs": {
"url": "https://github.com/nevware21/chromacon/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nevware21/chromacon/blob/main/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.12.6 < 2.x"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@microsoft/rush": "5.169.3",
"@nevware21/grunt-eslint-ts": "^0.5.1",
"@nevware21/grunt-ts-plugin": "^0.5.1",
"@nevware21/coverage-tools": ">= 0.1.4 < 2.x",
"@nevware21/ts-preproc": ">= 0.1.4 < 2.x",
"@nevware21/publish-npm": ">= 0.1.4 < 2.x",
"@size-limit/esbuild-why": "12.0.0",
"@size-limit/preset-small-lib": "12.0.0",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.0",
"@types/mocha": "^10.0.1",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-security": "^1.7.1",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"nyc": "^18.0.0",
"puppeteer": "24.38.0",
"size-limit": "12.0.0",
"typedoc": "^0.28.15",
"typedoc-github-theme": "^0.4.0",
"typescript": "~5.2.2"
}
}