-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "simple-ascii-chart-cli",
"version": "1.2.0",
"description": "Simple ascii chart generator CLI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"simple-ascii-chart": "dist/cli.js"
},
"scripts": {
"start": "tsc-watch -p tsconfig.json --preserveWatchOutput -w --onSuccess 'node ./dist/index.js'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json -w",
"prepare": "npm test && npm run lint && npm run build"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.3"
},
"keywords": [
"ascii",
"js",
"ts",
"cli",
"chart"
],
"author": "gtktsc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gtktsc/simple-ascii-chart-cli.git"
},
"bugs": {
"url": "https://github.com/gtktsc/simple-ascii-chart-cli/issues"
},
"homepage": "https://github.com/gtktsc/simple-ascii-chart-cli#readme",
"files": [
"dist/**/*"
],
"dependencies": {
"simple-ascii-chart": "^4.2.0",
"yargs": "^17.7.2"
}
}