-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
132 lines (132 loc) · 3.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "trucolor",
"version": "4.0.4",
"description": "TTY color toolkit supporting Truecolor (24bit RGB)",
"author": "Mark Griffiths <mark@thebespokepixel.com> (http://thebespokepixel.com/)",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"index.js",
"index.d.ts"
],
"bugs": {
"url": "https://github.com/thebespokepixel/trucolor/issues"
},
"copyright": {
"year": "2021",
"owner": "The Bespoke Pixel"
},
"dependencies": {
"@thebespokepixel/es-tinycolor": "^3.0.4",
"color-convert": "^2.0.1",
"escape-string-regexp": "^5.0.0",
"lodash": "^4.17.21",
"sgr-composer": "^3.0.0",
"term-ng": "^3.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/estree": "^0.0.50",
"ava": "^4.0.0-rc.1",
"c8": "^7.10.0",
"documentation-theme-bespoke": "^2.0.14",
"read-pkg": "^7.0.0",
"rollup": "^2.59.0",
"rollup-plugin-cleanup": "^3.2.1",
"semver-regex": "^4.0.2",
"xo": "^0.46.4"
},
"engines": {
"node": ">=14.0"
},
"homepage": "https://github.com/thebespokepixel/trucolor",
"keywords": [
"color",
"24bit",
"truecolor",
"SGR",
"ansi",
"command line",
"fish"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thebespokepixel/trucolor.git"
},
"scripts": {
"build": "rollup -c && npm run readme",
"test": "xo && c8 --reporter=text ava",
"doc-serve": "documentation serve --watch --theme node_modules/documentation-theme-bespoke --github --config src/docs/documentation.yml --project-name $npm_package_name --project-version $npm_package_version src/index.js",
"doc-build": "documentation build --format html --output docs --theme node_modules/documentation-theme-bespoke --github --config src/docs/documentation.yml --project-name $npm_package_name --project-version $npm_package_version src/index.js",
"readme": "compile-readme -u src/docs/example.md src/docs/readme.md > readme.md",
"coverage": "c8 --reporter=lcov ava; open coverage/lcov-report/index.html",
"prepublishOnly": "npx -p typescript tsc index.js --declaration --allowJs --emitDeclarationOnly"
},
"xo": {
"semicolon": false,
"ignores": [
"index.js",
"index.d.ts",
"docs/**",
"coverage/**"
]
},
"badges": {
"github": "thebespokepixel",
"npm": "thebespokepixel",
"libraries-io": "TheBespokePixel",
"name": "trucolor",
"codeclimate": "5f8c6c4143841284dc75",
"providers": {
"aux1": {
"title": "github",
"text": "source",
"color": "4E73B6",
"link": "https://github.com/thebespokepixel/trucolor"
}
},
"readme": {
"Publishing Status": [
[
"npm",
"libraries-io-npm"
],
[
"travis-com",
"rollup"
]
],
"Development Status": [
[
"travis-com-dev",
"libraries-io-github"
],
[
"snyk",
"code-climate",
"code-climate-coverage"
]
],
"Documentation/Help": [
"twitter"
]
},
"docs": [
[
"aux1",
"travis-com"
],
[
"code-climate",
"code-climate-coverage"
],
[
"snyk",
"libraries-io-npm"
]
]
}
}