UNPKG

1.18 kBJSONView Raw
1{
2 "name": "chalk-pipe",
3 "version": "6.0.0",
4 "description": "Create chalk style schemes with simpler style strings",
5 "type": "module",
6 "exports": "./distribution/index.js",
7 "types": "distribution",
8 "engines": {
9 "node": "^12.17.0 || ^14.13 || >=16.0.0"
10 },
11 "files": [
12 "distribution"
13 ],
14 "scripts": {
15 "build": "del-cli distribution && tsc",
16 "test": "xo && c8 ava"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/LitoMore/chalk-pipe.git"
21 },
22 "author": "LitoMore",
23 "license": "MIT",
24 "bugs": {
25 "url": "https://github.com/LitoMore/chalk-pipe/issues"
26 },
27 "homepage": "https://github.com/LitoMore/chalk-pipe#readme",
28 "devDependencies": {
29 "@sindresorhus/tsconfig": "^3.0.1",
30 "@types/node": "^18.8.0",
31 "ava": "^4.3.3",
32 "c8": "^7.12.0",
33 "del-cli": "^3.0.1",
34 "ts-node": "^10.9.1",
35 "typescript": "^4.8.4",
36 "xo": "^0.52.3"
37 },
38 "dependencies": {
39 "chalk": "^5.1.2"
40 },
41 "xo": {
42 "prettier": true
43 },
44 "ava": {
45 "files": [
46 "source/test.ts"
47 ],
48 "extensions": {
49 "ts": "module"
50 },
51 "nodeArguments": [
52 "--loader=ts-node/esm"
53 ]
54 }
55}