forked from JoshuaJWilborn/colorize-the-logs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.64 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
{
"name": "colorize-the-logs",
"version": "0.0.4",
"description": "Package to recolor the AWS CodeBuild logs and remove leftover escape sequences.",
"main": "index.js",
"scripts": {
"pack": "rm colorize-the-logs.zip;npm run build && npm run zip && npm run zip:source",
"zip": "zip -0 colorize-the-logs.zip manifest.json ./dist/* ./css/* ./assets/logo.png",
"zip:source": "zip -9 colorize-the-logs.source.zip ./* -x 'dist' -x colorize-the-logs.zip -x 'node_modules' -x 'coverage'",
"build": "npm run styles && npm run bundle",
"styles": "node ./scripts/generate-styles.js",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"bundle": "rollup -c --environment BUILD:production",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaJWilborn/colorize-the-logs.git"
},
"keywords": [
"developer",
"tools",
"AWS",
"CodeBuild",
"recolor",
"logs",
"escape",
"chars",
"visibility",
"readability",
"color",
"colorize"
],
"author": "Joshua Wilborn",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoshuaJWilborn/colorize-the-logs/issues"
},
"homepage": "https://github.com/JoshuaJWilborn/colorize-the-logs#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"jest": "^26.5.3",
"rollup": "^2.32.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^26.4.1",
"tslib": "^2.0.3",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"webextension-polyfill": "^0.6.0"
}
}