-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
47
48
49
50
51
52
53
{
"name": "chalk-pipe",
"version": "6.2.0",
"description": "Create chalk style schemes with simpler style strings",
"type": "module",
"exports": "./distribution/index.js",
"types": "distribution",
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
"files": [
"distribution"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "del-cli distribution && tsc",
"pretest": "npm run build",
"test": "xo && c8 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LitoMore/chalk-pipe.git"
},
"author": "LitoMore",
"license": "MIT",
"bugs": {
"url": "https://github.com/LitoMore/chalk-pipe/issues"
},
"homepage": "https://github.com/LitoMore/chalk-pipe#readme",
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"@types/node": "^22.7.4",
"ava": "^6.1.3",
"c8": "^10.1.2",
"del-cli": "^5.1.0",
"typescript": "^5.6.2",
"xo": "^0.59.3"
},
"dependencies": {
"chalk": "^5.3.0"
},
"xo": {
"prettier": true,
"rules": {
"ava/no-ignored-test-files": "off"
}
},
"ava": {
"files": [
"distribution/test.js"
]
}
}