-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "@wijohnst/color_console",
"version": "1.1.3",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"description": "Semantic, colorful console logging for Node / JavaScript / Typescript",
"repository": {
"type": "git",
"url": "https://github.com/wijohnst/ColorConsole"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start:dev": "npx nodemon",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint --ext .js,.ts .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}