-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "micro-chalk",
"author": "Clint Priest",
"license": "MIT",
"version": "1.1.2",
"description": "MicroChalk is a small library for coloring text with ansi codes in a form similar to chalk.",
"keywords": [
"color",
"colour",
"colors",
"ansi",
"terminal",
"console",
"cli",
"style",
"markup",
"styles",
"tty",
"format",
"formatting",
"shell",
"xterm",
"log",
"logging",
"term",
"micro",
"logger",
"chalk"
],
"bugs": "https://github.com/cpriest/micro-chalk/issues",
"homepage": "https://github.com/cpriest/micro-chalk",
"repository": "github:cpriest/micro-chalk",
"main": "index.js",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"demo": "cross-env NODE_OPTIONS=--experimental-vm-modules node --experimental-modules --loader ./misc/node-loader.mjs misc/demo.js"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"cross-env": "^7.0.3",
"docsify-cli": "^4.4.4",
"jest": "^29.6.3"
},
"dependencies": {}
}