-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 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
55
56
57
58
59
60
{
"name": "color-cc",
"version": "0.0.7",
"description": "Get colors in your node.js console, support commonjs / typescript / esnext, simplified version of colors",
"author": "Froguard <[email protected]>",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "nodemon --config './.nodemonrc.json' demo.ts",
"clear": "rm -rf ./index.js & rm -rf ./index.d.ts",
"prebuild": "npm run clear",
"build": "tsc",
"test": "jest",
"pretest:cover": "rm -rf ./__coverage__",
"test:cover": "jest --coverage",
"lint": "lint-staged",
"lint:fix": "eslint --fix '**/*.ts'",
"prerelease": "npm rum build",
"release": "npm publish --regitry=https://registry.npmjs.org",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chalk": "^4.1.2",
"debug": "^4.3.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^7.0.1",
"jest": "^27.4.0",
"lint-staged": "^12.3.3",
"nodemon": "^2.0.15",
"pinst": "^2.1.6",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"keywords": [
"ansi",
"terminal",
"colors",
"console"
],
"engines": {
"node": ">=10.0",
"npm": ">= 5"
},
"repository": "[email protected]:Froguard/color-cc.git",
"license": "MIT"
}