-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.19 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.19 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "cli-msg",
"version": "1.0.0",
"description": "Customizable theme based Terminal log messages",
"main": "index.js",
"sideEffects": false,
"scripts": {
"test": "jest ",
"build": "node scripts/prepareBuild.js",
"sample": "node sampleUsage.js",
"bp": "yarn build && yarn publish.package"
},
"repository": {
"type": "git",
"url": "https://github.com/anooprav7/cli-msg"
},
"keywords": [
"color-cli",
"cli-msg",
"console",
"cli",
"print",
"console.log",
"log"
],
"files": [
"index.js",
"defaultColorMap.js",
"utils.js"
],
"bugs": {
"url": "https://github.com/anooprav7/cli-msg/issues"
},
"author": "anooprav7@gmail.com",
"license": "MIT",
"dependencies": {
"chalk": "2.4.2"
},
"devDependencies": {
"cz-conventional-changelog": "3.0.2",
"jest": "24.7.1",
"rimraf": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|node_modules)[/\\\\]"
]
}
}