-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.11 KB
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": "colorize-template",
"version": "1.0.0",
"description": "Tagged template literal for ANSI colors.",
"keywords": [
"colors",
"console",
"formatting",
"terminal",
"nanocolors",
"picocolors",
"colorette",
"kleur",
"colors.js",
"chalk"
],
"author": "Usman Yunusov <usman.iunusov@gmail.com>",
"license": "MIT",
"repository": "usmanyunusov/colorize-template",
"main": "index.js",
"types": "./index.d.ts",
"browser": {
"./index.js": "./index.browser.js"
},
"sideEffects": false,
"scripts": {
"test": "node tests/index.js && node tests/browser.js",
"lint": "prettier --write '*.{js,ts}'"
},
"devDependencies": {
"clean-publish": "^3.2.0",
"prettier": "^2.4.1"
},
"benchmarkDependencies": {
"picocolors": "^0.2.1"
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}