-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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": "simple-ascii-chart",
"version": "4.2.0",
"description": "Simple ascii chart generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc-watch -p tsconfig.json --preserveWatchOutput -w --onSuccess 'node ./dist/index.js'",
"examples": "tsc-watch -p tsconfig.json --preserveWatchOutput -w --onSuccess 'node ./dist/examples.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.12",
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"tsc-watch": "^6.2.0",
"typescript": "^5.5.3"
},
"keywords": [
"ascii",
"js",
"ts",
"chart",
"line chart",
"bar chart",
"plot"
],
"author": "gtktsc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gtktsc/ascii-chart.git"
},
"bugs": {
"url": "https://github.com/gtktsc/ascii-chart/issues"
},
"homepage": "https://github.com/gtktsc/ascii-chart#readme",
"files": [
"dist/**/*"
]
}