-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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
{
"name": "beautify.log",
"description": "A Node.js lib to beautify the console.log from JavaScript with colors, making it easy and useful.",
"version": "3.0.4",
"main": "dist/index.js",
"types": "typing/index.d.ts",
"repository": "git@github.com:lucasgdb/beautify.log.git",
"author": "Lucas Bittencourt <lucasgdbittencourt@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "sucrase-node src/index.ts",
"build:ts": "tsc",
"build:project": "babel src -d dist --extensions '.ts,.js' --ignore \"**/__tests__\"",
"build": "yarn build:project && yarn build:ts",
"start": "node .",
"test": "jest"
},
"keywords": [
"color",
"terminal",
"escape",
"node",
"console-log",
"typescript"
],
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-jest": "^27.5.0",
"babel-preset-minify": "^0.5.1",
"core-js": "^3.21.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.0",
"sucrase": "^3.20.3",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}