-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 923 Bytes
/
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
{
"name": "chartscii",
"version": "3.1.0",
"description": "awesome ascii charts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tool3/chartscii"
},
"files": [
"./dist"
],
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register index.test.ts",
"print": "node -e \"const keys = require('./snapshots/index.test'); Object.keys(keys).map(key => console.log(key + '\\n' + keys[key].join('\\n'))) \" "
},
"keywords": [
"bar-chart",
"cli",
"ascii",
"chart"
],
"author": "Tal Hayut",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.3.14",
"@types/mocha": "10.0.6",
"chai": "4.2.0",
"mocha": "^10.0.0",
"shellfie": "^1.3.1",
"snaptdout": "^2.1.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"dependencies": {
"styl3": "3.1.1"
}
}