-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "chalk-ex",
"version": "1.0.1",
"description": "An easy use console print terminal with string styling with chalk.",
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "npx rollup -c",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaolinHom/chalk-ex.git"
},
"keywords": [
"chalk-ex",
"chalk"
],
"author": "Haolin",
"license": "MIT",
"bugs": {
"url": "https://github.com/HaolinHom/chalk-ex/issues"
},
"homepage": "https://github.com/HaolinHom/chalk-ex#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@types/node": "^16.10.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"chalk": "^4.1.0"
}
}