-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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": "yoo-hoo",
"version": "1.3.1",
"description": "Print a noticeable banner of words for your project. 🖨️",
"main": "lib/node-entry.js",
"browser": "lib/index.js",
"scripts": {
"dev": "tsc --build -w tsconfig.json",
"example": "npm run build && DEBUG=yoo-hoo ts-node example/index.ts",
"lint": "eslint \"src/**/*.ts\" --fix",
"build": "rm -rf lib && tsc --build tsconfig.json && ts-node script/build.ts",
"prepublishOnly": "npm run lint && npm run build"
},
"homepage": "https://github.com/alienzhou/yoo-hoo#readme",
"keywords": [
"welcome",
"banner",
"console",
"print",
"words"
],
"repository": {
"type": "git",
"url": "https://github.com/alienzhou/yoo-hoo"
},
"author": "alienzhou <alienzhou16@163.com>",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"chalk": "^4.1.0",
"debug": "^4.3.1",
"is-in-browser": "^2.0.0",
"lolcatjs": "^2.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}