UNPKG

1.16 kBJSONView Raw
1{
2 "name": "colorette",
3 "version": "1.2.1",
4 "description": "Color your terminal using pure idiomatic JavaScript.",
5 "main": "index.cjs",
6 "type": "module",
7 "module": "index.js",
8 "exports": {
9 "./package.json": "./package.json",
10 ".": {
11 "require": "./index.cjs",
12 "import": "./index.js"
13 }
14 },
15 "types": "colorette.d.ts",
16 "scripts": {
17 "test": "c8 testmatrix test/*.cjs",
18 "build": "node -e \"fs.writeFileSync('index.cjs',fs.readFileSync('index.js','utf8').replace(/export const /g,'exports.'),'utf8')\"",
19 "release": "v=$npm_package_version; git commit -am $v && git tag -s $v -m $v && git push && git push --tags && npm publish"
20 },
21 "repository": {
22 "type": "git",
23 "url": "jorgebucaran/colorette"
24 },
25 "files": [
26 "index.*",
27 "colorette.d.ts"
28 ],
29 "keywords": [
30 "colorette",
31 "terminal",
32 "styles",
33 "color",
34 "ansi"
35 ],
36 "author": "Jorge Bucaran",
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/jorgebucaran/colorette/issues"
40 },
41 "homepage": "https://github.com/jorgebucaran/colorette",
42 "devDependencies": {
43 "c8": "7.2.0",
44 "testmatrix": "0.1.2"
45 }
46}