-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.58 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
61
62
63
64
65
66
{
"name": "genbaneko",
"version": "2.1.3",
"description": "On-site cat on the console!",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --fix",
"lint:prettier": "prettier --write .",
"prebuild": "rimraf dist",
"build": "run-p build:*",
"build:common": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "jest",
"ts-esm": "node --loader ts-node/esm"
},
"license": "MIT License",
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"dist"
],
"bin": {
"genbaneko": "bin/index.js"
},
"engines": {
"node": ">=14"
},
"keywords": [
"genbaneko",
"cat",
"console",
"yoshi",
"good",
"joke"
],
"homepage": "https://www.npmjs.com/package/genbaneko",
"bugs": "https://github.com/moons-14/genbaneko/issues",
"repository": "github:moons-14/genbaneko",
"author": {
"name": "moons14",
"email": "[email protected]",
"url": "https://github.com/moons-14"
},
"dependencies": {
"commander": "^9.4.0",
"cowsayjs": "^1.0.7"
}
}