-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 939 Bytes
/
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
{
"name": "leeks.js",
"version": "0.3.0",
"description": "Simple ANSI styling for your terminal",
"author": "David Ralph",
"license": "MIT",
"main": "dist/index.js",
"types": "index.d.ts",
"bugs": {
"url": "https://github.com/davidcralph/leeks.js/issues"
},
"homepage": "https://leeks.js.org",
"repository": {
"type": "git",
"url": "https://github.com/davidcralph/leeks.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"build": "npm run clean && tsc",
"clean": "rm -rf dist && rm -rf node_modules && npm i"
},
"keywords": [
"color",
"colour",
"colors",
"colours",
"ansi",
"style",
"styles",
"terminal",
"console",
"lightweight",
"rgb",
"256"
],
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^16.10.1",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}